nlopess Thu Apr 29 11:01:54 2004 EDT
Modified files: /phpdoc/en/reference/strings/functions trim.xml Log: fixing example http://cvs.php.net/diff.php/phpdoc/en/reference/strings/functions/trim.xml?r1=1.5&r2=1.6&ty=u Index: phpdoc/en/reference/strings/functions/trim.xml diff -u phpdoc/en/reference/strings/functions/trim.xml:1.5 phpdoc/en/reference/strings/functions/trim.xml:1.6 --- phpdoc/en/reference/strings/functions/trim.xml:1.5 Tue Apr 27 17:45:48 2004 +++ phpdoc/en/reference/strings/functions/trim.xml Thu Apr 29 11:01:54 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.5 $ --> +<!-- $Revision: 1.6 $ --> <!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 --> <refentry id="function.trim"> <refnamediv> @@ -76,7 +76,7 @@ $text = "\t\tThese are a few words :) ... "; echo trim($text); // "These are a few words :) ..." -echo = trim($text, " \t."); // "These are a few words :)" +echo trim($text, " \t."); // "These are a few words :)" // trim the ASCII control characters at the beginning and end of $binary // (from 0 to 31 inclusive)