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
This commit is contained in:
James Moore 2000-10-27 14:47:18 +00:00
parent 759ecbcd3d
commit fde5394950

View file

@ -3050,6 +3050,14 @@ $text = ucwords($text); // $text is now: Mary Had A Little
// Lamb And She Loved It So.
</programlisting>
</example>
<note>
<simpara>
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).
</simpara>
</note>
</para>
<para>
See also <function>strtoupper</function>,