PHP syntax: iterate over an associative array
Posted by Quinn McHenry in PHP programming
An associative array stores an arbitrary index in addition to the values. This is useful for storing configuration information such as in the $_SERVER array.
An individual element of this array can be retrieved with:
$_SERVER['SITE_HTMLROOT']
To loop through all of the elements in $_SERVER and display the values and their corresponding indexes:
foreach ( $_SERVER as $ind=>$val )
echo "$ind : $val
";
About Quinn McHenry
Quinn was one of the original co-founders of Tech-Recipes. He is currently crafting iOS applications as a senior developer at Small Planet Digital in Brooklyn, New York.
View more articles by Quinn McHenry
View more articles by Quinn McHenry
The Conversation
Follow the reactions below and share your own thoughts.




