Imagine that you are an owner of a flower shop. One-dimensional array is enough to keep titles and prices. But if you need to keep more than one item of each type you need to use something different - one of the ways to do it is using multidimensional arrays. The table below might represent our two-dimensional array. Each row represents a type of flower and each column – a certain attribute.
Title | Price | Number |
rose | 1.25 | 15 |
daisy | 0.75 | 25 |
orchid | 1.15 | 7 |
<?php $shop = array( array("rose", 1.25 , 15), array("daisy", 0.75 , 25), array("orchid", 1.15 , 7) ); ?>
Array ( [0] => Array ( [0] => rose [1] => 1.25 [2] => 15 ) [1] => Array ( [0] => daisy [1] => 0.75 [2] => 25 ) [2] => Array ( [0] => orchid [1] => 1.15 [2] => 7 ) )
This example shows that now $shop array, in fact, contains three arrays. As you remember, to access data in one-dimensional array you have to point to array name and index. The same is true in regards to a two-dimensional array, with one exception: each element has two indexes – row and column.
To display elements of this array we could have organize manual access to each element or make it by putting For loop inside another For loop:
<?php echo "Manual access to each element
"; echo $shop[0][0]." costs ".$shop[0][1]." and you get ".$shop[0][2]." "; echo $shop[1][0]." costs ".$shop[1][1]." and you get ".$shop[1][2]." "; echo $shop[2][0]." costs ".$shop[2][1]." and you get ".$shop[2][2]." "; echo "Using loops to display array elements
"; echo ""; for ($row = 0; $row < 3; $row++) { echo "
"; ?>- The row number $row"; echo "
"; } echo ""; for ($col = 0; $col < 3; $col++) { echo "
"; echo "- ".$shop[$row][$col]."
"; } echo "
Perhaps, instead of the column numbers you prefer to create their names. For this purpose, you can use associative arrays. The following code will store the same set of flowers using column names:
<?php $shop = array( array( Title => "rose", Price => 1.25, Number => 15 ), array( Title => "daisy", Price => 0.75, Number => 25, ), array( Title => "orchid", Price => 1.15, Number => 7 ) ); ?>
Array ( [0] => Array ( [Title] => rose [Price] => 1.25 [Number] => 15 ) [1] => Array ( [Title] => daisy [Price] => 0.75 [Number] => 25 ) [2] => Array ( [Title] => orchid [Price] => 1.15 [Number] => 7 ) )
It is easier to work with this array, in case you need to get a single value out of it. Necessary data can be easily found, if you turn to a proper cell using meaningful row and column names that bear logical content. However, we are loosing the possibility to use simple for loop to view all columns consecutively.
You can view outer numerically indexed $shop array using the for loop. Each row of the $shop array is an associative array. Hence, inside the for loop you need for each loop. Also you can get each element from associative array manually:
<?php echo "Manual access to each element from associative array
"; for ($row = 0; $row < 3; $row++) { echo $shop[$row]["Title"]." costs ".$shop[$row]["Price"]." and you get ".$shop[$row]["Number"]; echo " "; } echo "Using foreach loop to display elements
"; echo ""; for ($row = 0; $row < 3; $row++) { echo "
"; ?>- The row number $row"; echo "
"; } echo ""; foreach($shop[$row] as $key => $value) { echo "
"; echo "- ".$value."
"; } echo "
Three-dimensional Arrays
You don’t have to be limited by two dimensions: the same way as array elements can contain other arrays, these arrays, in their turn, can contain new arrays.
Three-dimensional array is characterized by height, width, and depth. If you feel comfortable to imagine two-dimensional array as a table, then imagine a pile of such tables. Each element can be referenced by its layer, row, and column.
If we classify flowers in our shop into categories, then we can keep data on them using three-dimensional array. We can see from the code below, that three-dimensional array is an array containing array of arrays:
<?php $shop = array(array(array("rose", 1.25, 15), array("daisy", 0.75, 25), array("orchid", 1.15, 7) ), array(array("rose", 1.25, 15), array("daisy", 0.75, 25), array("orchid", 1.15, 7) ), array(array("rose", 1.25, 15), array("daisy", 0.75, 25), array("orchid", 1.15, 7) ) ); ?>
Array ( [0] => Array ( [0] => Array ( [0] => rose [1] => 1.25 [2] => 15 ) [1] => Array ( [0] => daisy [1] => 0.75 [2] => 25 ) [2] => Array ( [0] => orchid [1] => 1.15 [2] => 7 ) ) [1] => Array ( [0] => Array ( [0] => rose [1] => 1.25 [2] => 15 ) [1] => Array ( [0] => daisy [1] => 0.75 [2] => 25 ) [2] => Array ( [0] => orchid [1] => 1.15 [2] => 7 ) ) [2] => Array ( [0] => Array ( [0] => rose [1] => 1.25 [2] => 15 ) [1] => Array ( [0] => daisy [1] => 0.75 [2] => 25 ) [2] => Array ( [0] => orchid [1] => 1.15 [2] => 7 ) ) )
As this array has only numeric indexes, we can use nested for loops to display it:
<?php echo "
- ";
for ( $layer = 0; $layer < 3; $layer++ )
{
echo "
- The layer number $layer";
echo "
- ";
for ( $row = 0; $row < 3; $row++ )
{
echo "
- The row number $row";
echo "
- ";
for ( $col = 0; $col < 3; $col++ )
{
echo "
- ".$shop[$layer][$row][$col]." "; } echo "
";
}
echo "
";
}
echo " - The row number $row";
echo "
REFERENCES
http://www.webcheatsheet.com/PHP/multidimensional_arrays.php