Multidimensional Arrays
An array element can be any type of data. You've seen numbers and strings, but you can even put an array inside an array. An array of arrays is also called a multidimensional array. Imagine a ten-by-ten grid. You've got 100 different squares, each of which can have its own value. One way to represent this in code is a two-dimensional array: a ten-element array of ten-number arrays, ten rows of ten columns.
To reference a single element, you first use square brackets to pick the first dimension (row), then use a second pair of brackets to pick the second dimension (column). Row 3, column 7, would be written as $someArray[3][7].
Listing 5.6 initializes a multidimensional array using the array function. This shows that multidimensional ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access