Online Documentation Server
 ПОИСК
ods.com.ua Web
 КАТЕГОРИИ
Home
Programming
Net technology
Unixes
Security
RFC, HOWTO
Web technology
Data bases
Other docs

 


 ПОДПИСКА

 О КОПИРАЙТАХ
Вся предоставленная на этом сервере информация собрана нами из разных источников. Если Вам кажется, что публикация каких-то документов нарушает чьи-либо авторские права, сообщите нам об этом.




ucwords

ucwords

(PHP3 >= 3.0.3, PHP4 )

ucwords --  Uppercase the first character of each word in a string

Description

string ucwords (string str)

Capitalizes the first character of each word in str if that character is alphabetic.

Example 1. ucwords() example


$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.
      

See also strtoupper(), strtolower() and ucfirst().



With any suggestions or questions please feel free to contact us