From 91fbc3af30cbdc18b72392405b063020785621b5 Mon Sep 17 00:00:00 2001 From: jim winstead Date: Wed, 31 Oct 2001 00:45:52 +0000 Subject: [PATCH] add see also for ucwords to strtolower, strtoupper, and ucfirst git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@61220 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/functions/strings.xml b/functions/strings.xml index 216a60d2bf..9f88709fe4 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -3275,8 +3275,9 @@ print $str; # Prints mary had a little lamb and she loved it so - See also strtoupper - and ucfirst. + See also strtoupper, + ucfirst, + and ucwords. @@ -3312,8 +3313,9 @@ print $str; # Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO - See also strtolower - and ucfirst. + See also strtolower, + ucfirst, + and ucwords. @@ -3789,8 +3791,9 @@ $text = ucfirst($text); // $text is now Mary had a little lamb - See also strtoupper and - strtolower. + See also strtolower and + strtoupper, + and ucwords.