Associative Array
- hash
- dictionary
Associative or Named Arrays are maps where the keys can be either strings or numbers.
<h1>Named Arrays</h1>
<?php
$length = array("php" => 3, "mysql" => 5, "linux" => 5);
print $length["php"];
print "x";
print $length["xyz"];
print "x";
?>