From 7fd2dce31107f15b3cffbaefe109f3bfaead59b0 Mon Sep 17 00:00:00 2001 From: Rich Date: Mon, 17 Dec 2018 17:14:14 +0000 Subject: [PATCH] PHP array incorrect value (#32944) * grammar update * Incorrect array value --- guide/english/php/array/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/php/array/index.md b/guide/english/php/array/index.md index 29ad6273d18..ac100e1b0c8 100644 --- a/guide/english/php/array/index.md +++ b/guide/english/php/array/index.md @@ -124,7 +124,7 @@ You will always be able to get the value for the specific key by going down the When working with arrays, there are a few important things to keep in mind: 1) A comma after the last element is optional. -2) Named keys must be escaped to be accessed (i.e. $bikes[not my favorite] would not work). +2) Named keys must use quotes to be accessed (i.e. $bikes[not my favorite] would not work). For more information, please see [PHP: Arrays](http://php.net/manual/en/language.types.array.php)