Reference Array by index : Array Element : Data Structure PHP Source Code


PHP Source Code » Data Structure » Array Element »

 

Reference Array by index



<?
$myarray = array('one', 2'three');

echo($myarray[0]);
echo($myarray[1]);
echo($myarray[2]);


?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Data Structure
» Array Element