leszek Wed Feb 9 04:17:09 2005 EDT
Modified files:
/phpdoc/en/reference/array/functions list.xml
Log:
- fixed xml
http://cvs.php.net/diff.php/phpdoc/en/reference/array/functions/list.xml?r1=1.12&r2=1.13&ty=u
Index: phpdoc/en/reference/array/functions/list.xml
diff -u phpdoc/en/reference/array/functions/list.xml:1.12
phpdoc/en/reference/array/functions/list.xml:1.13
--- phpdoc/en/reference/array/functions/list.xml:1.12 Tue May 4 15:55:18 2004
+++ phpdoc/en/reference/array/functions/list.xml Wed Feb 9 04:17:08 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.12 $ -->
+<!-- $Revision: 1.13 $ -->
<!-- splitted from ./en/functions/array.xml, last change in rev 1.2 -->
<refentry id="function.list">
<refnamediv>
@@ -90,10 +90,9 @@
assigned in the reverse order.
</para>
</warning>
- <para>
- <example>
- <title>Using <function>list</function> with array indices</title>
- <programlisting role="php">
+ <example>
+ <title>Using <function>list</function> with array indices</title>
+ <programlisting role="php">
<![CDATA[
<?php
@@ -105,12 +104,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]=>
@@ -121,9 +120,8 @@
string(6) "coffee"
}
]]>
- </screen>
- </example>
- </para>
+ </screen>
+ </example>
<para>
See also <function>each</function>, <function>array</function>
and <function>extract</function>.