diff --git a/functions/array.xml b/functions/array.xml index 003843c32a..6117172406 100644 --- a/functions/array.xml +++ b/functions/array.xml @@ -1,5 +1,5 @@ - + Array Functions Arrays @@ -91,7 +91,8 @@ print_r($array); which will display : -Array ( +Array +( [0] => 1 [1] => 1 [2] => 1 @@ -118,7 +119,8 @@ print_r($firstquarter); which will display : -Array ( +Array +( [1] => 'January' [2] => 'February' [3] => 'March' @@ -521,7 +523,8 @@ $c = array_map("show_Spanish", $a, $b); print_r($c); // will output: -// Array ( +// Array +// ( // [0] => The number 1 is called uno in Spanish // [1] => The number 2 is called dos in Spanish // [2] => The number 3 is called tres in Spanish @@ -534,7 +537,8 @@ $d = array_map("map_Spanish", $a , $b); print_r($d); // will output: -// Array ( +// Array +// ( // [0] => Array // ( // [1] => uno