mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Correct bug
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@56554 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
de9fbf7367
commit
63e9bc2e15
1 changed files with 9 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.88 $ -->
|
||||
<!-- $Revision: 1.89 $ -->
|
||||
<reference id="ref.array">
|
||||
<title>Array Functions</title>
|
||||
<titleabbrev>Arrays</titleabbrev>
|
||||
|
@ -1661,10 +1661,10 @@ while (list ($key, $val) = each ($fruits)) {
|
|||
<para>
|
||||
<informalexample>
|
||||
<programlisting>
|
||||
fruits[a] = orange
|
||||
fruits[d] = lemon
|
||||
fruits[b] = banana
|
||||
fruits[c] = apple
|
||||
a = orange
|
||||
d = lemon
|
||||
b = banana
|
||||
c = apple
|
||||
</programlisting>
|
||||
</informalexample>
|
||||
</para>
|
||||
|
@ -1721,10 +1721,10 @@ while (list ($key, $val) = each ($fruits)) {
|
|||
<para>
|
||||
<informalexample>
|
||||
<programlisting>
|
||||
fruits[c] = apple
|
||||
fruits[b] = banana
|
||||
fruits[d] = lemon
|
||||
fruits[a] = orange
|
||||
c = apple
|
||||
b = banana
|
||||
d = lemon
|
||||
a = orange
|
||||
</programlisting>
|
||||
</informalexample>
|
||||
</para>
|
||||
|
|
Loading…
Reference in a new issue