From 589ce16beb92ead1a09f8cf9eef9ae6e16532c60 Mon Sep 17 00:00:00 2001 From: Thomas Schoefbeck Date: Sun, 4 Nov 2001 09:20:46 +0000 Subject: [PATCH] just a small example-corr. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@61538 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/array.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/array.xml b/functions/array.xml index 129bbd92e1..e4777f14bc 100644 --- a/functions/array.xml +++ b/functions/array.xml @@ -1,5 +1,5 @@ - + Array Functions Arrays @@ -3038,7 +3038,7 @@ $fruits = array ("lemon", "orange", "banana", "apple"); sort ($fruits); reset ($fruits); while (list ($key, $val) = each ($fruits)) { - echo "fruits[".$key."] = ".$val; + echo "fruits[".$key."] = ".$val."\n"; } ?>