From 275b566ceeea2edb941be420745c0d51a19a0b1a Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Thu, 29 Apr 2004 15:01:54 +0000 Subject: [PATCH] fixing example git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@157509 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/trim.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/strings/functions/trim.xml b/reference/strings/functions/trim.xml index 5f8ddf9d79..58bae1de86 100644 --- a/reference/strings/functions/trim.xml +++ b/reference/strings/functions/trim.xml @@ -1,5 +1,5 @@ - + @@ -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)