From 686a898087736282613bf9a03f8787c39c82b3dc Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Wed, 21 Nov 2001 19:13:24 +0000 Subject: [PATCH] Typo fix from previous commit. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@62948 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/strings.xml b/functions/strings.xml index 78e38ec0e6..dc0aeea438 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -3789,7 +3789,7 @@ $clean = trim($binary,"\0x00..\0x1F"); <function>ucfirst</function> example $foo = 'hello world!'; -$foo = ucfirst($text); // Hello world! +$foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD!