mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
56d05862c1
commit
096d4d2cae
1 changed files with 9 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue