+ 4
Indices is French for indexes. To access a value from an array, you use its index. By default, indexes are numbers, starting with 0. <?php $array = array(1, 2, 3, 4, 5); print_r($array[2]); //prints 3 ?>
14th Oct 2016, 10:31 PM
Zen
Zen - avatar