1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 06:47:54 +02:00

Merge pull request #2824 from avimar/patch-1

[php/en] fix double language for arrays
This commit is contained in:
Adam Bard
2017-08-18 10:12:27 -07:00
committed by GitHub

View File

@@ -132,9 +132,7 @@ echo 'This outputs ' . FOO; // Returns 'This ouputs something'
* Arrays * Arrays
*/ */
// All arrays in PHP are associative arrays (hashmaps), // All arrays in PHP are associative arrays (hashmaps in some languages)
// Associative arrays, known as hashmaps in some languages.
// Works with all PHP versions // Works with all PHP versions
$associative = array('One' => 1, 'Two' => 2, 'Three' => 3); $associative = array('One' => 1, 'Two' => 2, 'Three' => 3);