HomeWeb application programmingPHP programmingPHP Syntax: Iterate over an Associative Array

PHP Syntax: Iterate over an Associative Array

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 the following:

$_SERVER['SITE_HTMLROOT']

To loop through all of the elements in $_SERVER and display the values and their corresponding indexes, use the following:

foreach ( $_SERVER as $ind=>$val )
echo "$ind : $val
";

Quinn McHenry
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.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

LATEST REVIEWS

Recent Comments

error: Content is protected !!