jimw            Wed Jan  2 07:24:48 2002 EDT

  Modified files:              
    /phpdoc/en/functions        strings.xml 
  Log:
  chunk_split: don't give parameter same name as type, fix prose a little
  
Index: phpdoc/en/functions/strings.xml
diff -u phpdoc/en/functions/strings.xml:1.148 phpdoc/en/functions/strings.xml:1.149
--- phpdoc/en/functions/strings.xml:1.148       Wed Jan  2 06:54:08 2002
+++ phpdoc/en/functions/strings.xml     Wed Jan  2 07:24:47 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.148 $ -->
+<!-- $Revision: 1.149 $ -->
  <reference id="ref.strings">
   <title>String functions</title>
   <titleabbrev>Strings</titleabbrev>
@@ -226,7 +226,7 @@
     <funcsynopsis>
      <funcprototype>
       <funcdef>string <function>chunk_split</function></funcdef>
-      <paramdef>string <parameter>string</parameter></paramdef>
+      <paramdef>string <parameter>body</parameter></paramdef>
       <paramdef>int 
        <parameter><optional>chunklen</optional></parameter>
       </paramdef>
@@ -236,13 +236,12 @@
      </funcprototype>
     </funcsynopsis>
     <para>
-     Can be used to split a string into smaller chunks which is useful
-     for e.g. converting <link
-     linkend="function.base64-encode">base64_encode</link> output to
-     match RFC 2045 semantics. It inserts every
-     <parameter>chunklen</parameter> (defaults to 76) chars the string
-     <parameter>end</parameter> (defaults to "\r\n").  It returns the
-     new string leaving the original string untouched.
+     Can be used to split a string into smaller chunks which is useful for
+     e.g. converting <link
+     linkend="function.base64-encode">base64_encode</link> output to match RFC
+     2045 semantics. It inserts <parameter>end</parameter> (defaults to
+     "\r\n") every <parameter>chunklen</parameter> (defaults to 76) chars. It
+     returns the new string leaving the original string untouched.
      <example>
       <title><function>chunk_split</function> example</title>
       <programlisting role="php">


Reply via email to