5.2. Indexing Arrays

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.

Listing 5.3. Indexing arrays with strings
 <?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"); } ...

Get Core PHP Programming, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.