Indexed and Associative Arrays
<?php
    $a
[0] = 1;
    
$a[1] = "foo";
    
$a[]  = 1.57;
    
$catch_it['cat'] = "mouse";
    
$catch_it['dog'] = "cat";
?>
Manipulating