leszek Wed Feb 9 04:19:13 2005 EDT
Modified files:
/phpdoc/en/reference/array/functions list.xml
Log:
- uh, reverted, my mistake
http://cvs.php.net/diff.php/phpdoc/en/reference/array/functions/list.xml?r1=1.13&r2=1.14&ty=u
Index: phpdoc/en/reference/array/functions/list.xml
diff -u phpdoc/en/reference/array/functions/list.xml:1.13
phpdoc/en/reference/array/functions/list.xml:1.14
--- phpdoc/en/reference/array/functions/list.xml:1.13 Wed Feb 9 04:17:08 2005
+++ phpdoc/en/reference/array/functions/list.xml Wed Feb 9 04:19:13 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.13 $ -->
+<!-- $Revision: 1.14 $ -->
<!-- splitted from ./en/functions/array.xml, last change in rev 1.2 -->
<refentry id="function.list">
<refnamediv>
@@ -90,9 +90,10 @@
assigned in the reverse order.
</para>
</warning>
- <example>
- <title>Using <function>list</function> with array indices</title>
- <programlisting role="php">
+ <para>
+ <example>
+ <title>Using <function>list</function> with array indices</title>
+ <programlisting role="php">
<![CDATA[
<?php
@@ -104,12 +105,12 @@
?>
]]>
- </programlisting>
- <para>
- Gives the following output (note the order of the elements compared in
- which order they were written in the <function>list</function> syntax):
- </para>
- <screen>
+ </programlisting>
+ <para>
+ Gives the following output (note the order of the elements compared in
+ which order they were written in the <function>list</function> syntax):
+ </para>
+ <screen>
<![CDATA[
array(3) {
[2]=>
@@ -120,8 +121,9 @@
string(6) "coffee"
}
]]>
- </screen>
- </example>
+ </screen>
+ </example>
+ </para>
<para>
See also <function>each</function>, <function>array</function>
and <function>extract</function>.