diff options
Diffstat (limited to 'php.html.markdown')
| -rw-r--r-- | php.html.markdown | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/php.html.markdown b/php.html.markdown index f247ba77..ac9b45a8 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -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); | 
