Added Multidimensional Array (#32986)

Added Multidimensional Array as part of arrays
This commit is contained in:
Andonov Florijan
2018-10-31 22:53:42 +01:00
committed by Paul Happ
parent a08f252c71
commit d13b8bf6a0

View File

@ -76,6 +76,15 @@ Would produce the following output:
I like BWM
```
## Multidimensional Array
As we mentioned earlier arrays are collection of items, often times these items may be arrays of themselves.
![alt text](https://preview.ibb.co/hLBfcf/img.png "Screenshot of multidimensional arrays")
You will always be able to get the value for the specific key by going down the layers: $arr['layerOne']['two']
## Pitfalls
When working with arrays, there are a few important things to keep in mind: