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
This commit is contained in:
jim winstead 2001-10-31 00:45:52 +00:00
parent fe78b63d6c
commit 91fbc3af30

View file

@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
<!-- $Revision: 1.118 $ -->
<!-- $Revision: 1.119 $ -->
<reference id="ref.strings">
<title>String functions</title>
<titleabbrev>Strings</titleabbrev>
@ -3275,8 +3275,9 @@ print $str; # Prints mary had a little lamb and she loved it so
</programlisting>
</example>
<para>
See also <function>strtoupper</function>
and <function>ucfirst</function>.
See also <function>strtoupper</function>,
<function>ucfirst</function>,
and <function>ucwords</function>.
</para>
</refsect1>
</refentry>
@ -3312,8 +3313,9 @@ print $str; # Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
</programlisting>
</example>
<para>
See also <function>strtolower</function>
and <function>ucfirst</function>.
See also <function>strtolower</function>,
<function>ucfirst</function>,
and <function>ucwords</function>.
</para>
</refsect1>
</refentry>
@ -3789,8 +3791,9 @@ $text = ucfirst($text); // $text is now Mary had a little lamb
</example>
</para>
<para>
See also <function>strtoupper</function> and
<function>strtolower</function>.
See also <function>strtolower</function> and
<function>strtoupper</function>,
and <function>ucwords</function>.
</para>
</refsect1>
</refentry>