diff --git a/guide/english/php/array/index.md b/guide/english/php/array/index.md index 0ecc6eedf3..4c2e804d3f 100644 --- a/guide/english/php/array/index.md +++ b/guide/english/php/array/index.md @@ -23,6 +23,15 @@ $bikes = array('Suzuki','BMW','Yamaha'); $bikes = ['Suzuki', 'BMW', 'Yamaha']; ``` +PHP arrays can store more than one type of value at a time: +``` + Value Arrays can also be defined with named keys, as shown below: