tom             Thu May  2 17:17:55 2002 EDT

  Modified files:              
    /phpdoc/de/reference/array/functions        each.xml end.xml 
  Log:
  sync to en
  
Index: phpdoc/de/reference/array/functions/each.xml
diff -u phpdoc/de/reference/array/functions/each.xml:1.2 
phpdoc/de/reference/array/functions/each.xml:1.3
--- phpdoc/de/reference/array/functions/each.xml:1.2    Wed Apr 17 02:53:01 2002
+++ phpdoc/de/reference/array/functions/each.xml        Thu May  2 17:17:53 2002
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
 <!-- splitted from ./de/functions/array.xml, last change in rev 1.2 -->
 <!-- last change to 'each' in en/ tree in rev 1.2 -->
-<!-- EN-Revision: 1.2 Maintainer: tom Status: ready -->
+<!-- EN-Revision: 1.3 Maintainer: tom Status: ready -->
 <!-- OLD-Revision: 1.173/EN.1.2 -->
   <refentry id="function.each">
    <refnamediv>
@@ -98,7 +98,8 @@
     <para>
      Siehe auch <function>key</function>, <function>list</function>,
      <function>current</function>, <function>reset</function>,
-     <function>next</function> und <function>prev</function>.
+     <function>next</function>, <function>prev</function> und
+     <function>foreach</function>.
     </para>
    </refsect1>
   </refentry>
Index: phpdoc/de/reference/array/functions/end.xml
diff -u phpdoc/de/reference/array/functions/end.xml:1.2 
phpdoc/de/reference/array/functions/end.xml:1.3
--- phpdoc/de/reference/array/functions/end.xml:1.2     Wed Apr 17 02:53:01 2002
+++ phpdoc/de/reference/array/functions/end.xml Thu May  2 17:17:55 2002
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
 <!-- splitted from ./de/functions/array.xml, last change in rev 1.2 -->
 <!-- last change to 'end' in en/ tree in rev 1.2 -->
-<!-- EN-Revision: 1.2 Maintainer: tom Status: ready -->
+<!-- EN-Revision: 1.3 Maintainer: tom Status: ready -->
 <!-- OLD-Revision: 1.173/EN.1.2 -->
   <refentry id="function.end">
    <refnamediv>
@@ -20,6 +20,22 @@
      <function>end</function> rückt den internen Zeiger von
      <parameter>array</parameter> bis zum letzten Element vor, und gibt
      dieses Element zurück.
+    </para>
+    <para>
+     <example>
+      <title>Ein einfaches <function>end</function> Beispiel</title>
+      <programlisting role="php">
+<![CDATA[
+<?php
+
+  $fruits = array('apple','banana','cranberry');
+    
+  print end($fruits); // cranberry
+      
+?>
+]]>
+      </programlisting>
+     </example>
     </para>
     <para>
      Siehe auch <function>current</function>,


Reply via email to