Setting up an associative array is similarly easy : array « Data Structure « PHP






Setting up an associative array is similarly easy

 
<? 
$myassocarray = array ("mykey" => 'myvalue', "another" => 'one'); 
while ($element = each ($myassocarray)) { 
  echo "Key - " . $element['key'] . " and Value - " . $element['value'] . "<br />"; 
}
?>
  
  








Related examples in the same category

1.A list of numbers using an array variable
2.Accessing Array Elements
3.Arrays
4.Converting an object to an array will convert properties to elements of the resulting array
5.Create an array
6.Creates an array with keys 0 through 3
7.Creating arrays with array()
8.Creating multidimensional arrays with array()
9.Creating numeric arrays with array()
10.Demonstrate the Difference Between the Array '+' Operator and a True Array Union
11.Using the array function to create an array of weekdays
12.Using the array() Function
13.Queue Handling Library
14.Stack Handling Library