Revert bogus whitespace 'fixes'.

(the output of print_r simply IS like this)


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@57597 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jeroen van Wolffelaar 2001-09-16 10:31:30 +00:00
parent 56d05862c1
commit 096d4d2cae

View file

@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
<!-- $Revision: 1.96 $ -->
<!-- $Revision: 1.97 $ -->
<reference id="ref.array">
<title>Array Functions</title>
<titleabbrev>Arrays</titleabbrev>
@ -91,7 +91,8 @@ print_r($array);
which will display :
<informalexample>
<programlisting>
Array (
Array
(
[0] => 1
[1] => 1
[2] => 1
@ -118,7 +119,8 @@ print_r($firstquarter);
which will display :
<informalexample>
<programlisting>
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