torben          Thu Mar 14 20:48:32 2002 EDT

  Modified files:              
    /phpdoc/en/functions        strings.xml 
  Log:
  Fixed example typo in strtok().
  
  
Index: phpdoc/en/functions/strings.xml
diff -u phpdoc/en/functions/strings.xml:1.165 phpdoc/en/functions/strings.xml:1.166
--- phpdoc/en/functions/strings.xml:1.165       Tue Mar  5 06:25:00 2002
+++ phpdoc/en/functions/strings.xml     Thu Mar 14 20:48:32 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.165 $ -->
+<!-- $Revision: 1.166 $ -->
  <reference id="ref.strings">
   <title>String functions</title>
   <titleabbrev>Strings</titleabbrev>
@@ -3249,7 +3249,7 @@
 $tok = strtok($string," \n\t");
 while ($tok) {
     echo "Word=$tok<br>";
-    $tok = strtok(" ");
+    $tok = strtok(" \n\t");
 }
 ]]>
       </programlisting>


Reply via email to