From eb9b7d9a1f357342a41560a46ba567915b1a43c0 Mon Sep 17 00:00:00 2001 From: Daniel Beckham Date: Tue, 19 Jun 2001 19:18:08 +0000 Subject: [PATCH] - added note that sizeof is an alias for count git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@49834 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/array.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/array.xml b/functions/array.xml index c37bea3127..2aa64ee374 100644 --- a/functions/array.xml +++ b/functions/array.xml @@ -2801,18 +2801,18 @@ while (list (, $number) = each ($numbers)) { sizeof - Get the number of elements in an array + Get the number of elements in variable Description int sizeof - array array + mixed var - Returns the number of elements in the array. + The sizeof function is an alias for count. See also count.