mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 15:51:41 +03:00
php: fix double language for arrays
This commit is contained in:
parent
6e7c5c7933
commit
c4b9f33549
@ -132,9 +132,7 @@ echo 'This outputs ' . FOO; // Returns 'This ouputs something'
|
||||
* Arrays
|
||||
*/
|
||||
|
||||
// All arrays in PHP are associative arrays (hashmaps),
|
||||
|
||||
// Associative arrays, known as hashmaps in some languages.
|
||||
// All arrays in PHP are associative arrays (hashmaps in some languages)
|
||||
|
||||
// Works with all PHP versions
|
||||
$associative = array('One' => 1, 'Two' => 2, 'Three' => 3);
|
||||
|
Loading…
Reference in New Issue
Block a user