From 87014819d062dc8a1bc1304f57fd7acbafb422d0 Mon Sep 17 00:00:00 2001 From: jim winstead Date: Tue, 23 Jan 2001 01:43:38 +0000 Subject: [PATCH] remove bogus example, tested with php3.0.6 and php4.0.3 to be wrong git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@40011 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/array.xml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/functions/array.xml b/functions/array.xml index 20cdc90aa4..689d6ac516 100644 --- a/functions/array.xml +++ b/functions/array.xml @@ -1431,16 +1431,7 @@ $a[0] = 1; $a[1] = 3; $a[2] = 5; $result = count ($a); -//$result == 3, not 2, as there are 3 assigned elements - -$a[2] = 1; -$a[4] = ""; -$a[6] = 5; -$a[8] = 7; -$a[10] = 11; -$a[12] = ""; -$result = count ($a); -// $result == 4, as there are 4 assigned elements +//$result == 3