Arrays

Ordered arrays

<?
$a
[0] = 1;
$a[1] = "foo";
$a[]  = 1.57;
?>

String-indexed arrays

<?
$catch_it
['cat'] = "mouse";
$catch_it['dog'] = "cat";
?>
See the references for more information on arrays. In PHP, they can do a lot of "surprising" things...