Multi-dimensional arrays

# Example 1:
$a["color"]     = "red";
$a["taste"]     = "sweet";
$a["shape"]     = "round";
$a["name"]      = "apple";
$a[3]           = 4;


# Example 2:
$b = array(
     "color" => "red",
     "taste" => "sweet",
     "shape" => "round",
     "name"  => "apple",
     3       => 4
);
$a[color]=red
$a[taste]=sweet
$a[shape]=round
$a[name]=apple
$a[3]=4

$b[color]=red
$b[taste]=sweet
$b[shape]=round
$b[name]=apple
$b[3]=4