sander          Sun Jun  9 09:01:01 2002 EDT

  Modified files:              
    /phpdoc-nl/reference/strings/functions      implode.xml 
  Log:
  Sync with EN
  
  
Index: phpdoc-nl/reference/strings/functions/implode.xml
diff -u phpdoc-nl/reference/strings/functions/implode.xml:1.2 
phpdoc-nl/reference/strings/functions/implode.xml:1.3
--- phpdoc-nl/reference/strings/functions/implode.xml:1.2       Mon May 20 07:32:22 
2002
+++ phpdoc-nl/reference/strings/functions/implode.xml   Sun Jun  9 09:01:00 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- EN-Revision: 1.2 Maintainer: sander Status: ready -->
+<!-- EN-Revision: 1.3 Maintainer: sander Status: ready -->
   <refentry id="function.implode">
    <refnamediv>
     <refname>implode</refname>
@@ -19,7 +19,14 @@
       <title><function>implode</function> voorbeeld</title>
       <programlisting role="php">
 <![CDATA[
-$colon_separated = implode (";", $array);
+<?php
+
+$array = array('achternaam', 'email', 'telefoon');
+$door_kommas_gescheiden = implode(",", $array);
+
+print $door_kommas_gescheiden; // achternaam,email,telefoon
+
+?>
 ]]>
       </programlisting>
      </example>


Reply via email to