From fde53949507d7441db5610f5bffb705612d9fa63 Mon Sep 17 00:00:00 2001 From: James Moore Date: Fri, 27 Oct 2000 14:47:18 +0000 Subject: [PATCH] Adding note about behaviour of ucwords with abbreviations (Bug ID: 7493) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@34670 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/functions/strings.xml b/functions/strings.xml index 1753655f94..59245e37e0 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -3050,6 +3050,14 @@ $text = ucwords($text); // $text is now: Mary Had A Little // Lamb And She Loved It So. + + + The definition of a word is any string of characters + that is immediately after a whitespace (These are: + space, form-feed, newline, carriage return, horizontal tab, + and vertical tab). + + See also strtoupper,