Data Type Php

$myarray = array('one', 2, 'three');
$myarray[] = 'the fourth element';
echo($myarray[3]);
?>