From f47ca63fe5026f3d9ddcaf5341a516e05c657d5a Mon Sep 17 00:00:00 2001 From: Torben Wilson Date: Fri, 14 Dec 2001 01:11:48 +0000 Subject: [PATCH] Whitespace fix in code example. Remember, don't use tabs to indent code examples; use 4 spaces. See the howto for more information. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@64968 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 277e98a7d4..f2b8c2bdaf 100644 --- a/functions/array.xml +++ b/functions/array.xml @@ -1,5 +1,5 @@ - + Array Functions Arrays @@ -703,9 +703,9 @@ function array_keys ($arr, $term="") { while (list($k,$v) = each($arr)) { if ($term && $v != $term) { continue; - } + } $t[] = $k; - } + } return $t; } ]]>