From c35452fd96482872a8889ed8b3e54546d33e96b2 Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Tue, 8 May 2018 12:05:17 +0000 Subject: [PATCH] Insert comma for clarity As suggested by a patch provided by an anonymous user. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@344980 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/array-push.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/array/functions/array-push.xml b/reference/array/functions/array-push.xml index b78ab2223b..8fa65b3e3e 100644 --- a/reference/array/functions/array-push.xml +++ b/reference/array/functions/array-push.xml @@ -29,7 +29,7 @@ $array[] = $var; If you use array_push to add one element to the - array it's better to use $array[] = because in that + array, it's better to use $array[] = because in that way there is no overhead of calling a function.