hholzgra Wed May 2 07:11:06 2001 EDT
Modified files:
/phpdoc/en/functions strings.xml
Log:
reverting yesterdays accitential commit
Index: phpdoc/en/functions/strings.xml
diff -u phpdoc/en/functions/strings.xml:1.85 phpdoc/en/functions/strings.xml:1.86
--- phpdoc/en/functions/strings.xml:1.85 Tue May 1 09:20:51 2001
+++ phpdoc/en/functions/strings.xml Wed May 2 07:11:06 2001
@@ -3426,27 +3426,15 @@
</funcprototype>
</funcsynopsis>
<para>
-<<<<<<< strings.xml
-<<<<<<< strings.xml
- Capitalizes the first character of each word in
- <parameter>str</parameter> if that character is alphabetic. A
- word is defined as any sequence of non-whitespace letters (of the
- current locale) immediately following a whitespace (space,
- horizontal or vertical tab, linefeed or carriage return).
-=======
- Retuns a string with the first character of each word in
-=======
Returns a string with the first character of each word in
->>>>>>> 1.83
<parameter>str</parameter> capitalized, if that character is
alphabetic.
->>>>>>> 1.77
<example>
<title><function>ucwords</function> example</title>
<programlisting role="php">
-$text = "mary had a little lamb and she loved it so."; $text =
- ucwords($text); // $text is now: Mary Had A Little // Lamb
And
- She Loved It So.
+$text = "mary had a little lamb and she loved it so.";
+$text = ucwords($text); // $text is now: Mary Had A Little
+ // Lamb And She Loved It So.
</programlisting>
</example>
<note>