August 2003
Intermediate to advanced
1104 pages
19h 27m
English
So far we've only seen arrays indexed by integers, but it is also permissible to use strings. Sometimes these are called associative arrays, or hashes. They are helpful in situations where you are collecting different types of information into one array. You could build into your code a system where element zero is a name, element one is a location, and element two is an occupation. Listing 5.3 is a more elegant way to accomplish this.
<?php // fill in some information $UserInfo["Name"] = "Leon Atkinson"; $UserInfo["Location"] = "Martinez, California"; $UserInfo["Occupation"] = "Programmer"; //loop over values foreach($UserInfo as $key=>$value) { print("$key is $value.<br>\n"); } ... |