mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
fe78b63d6c
commit
91fbc3af30
1 changed files with 10 additions and 7 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue