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

 


 ПОДПИСКА

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




strtoupper

strtoupper

(PHP3 , PHP4 )

strtoupper -- Make a string uppercase

Description

string strtoupper (string string)

Returns string with all alphabetic characters converted to uppercase.

Note that 'alphabetic' is determined by the current locale. For instance, in the default "C" locale characters such as umlaut-a (д) will not be converted.

Example 1. Strtoupper() example


$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper ($str);	
print $str; # Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
     

See also strtolower() and ucfirst().



With any suggestions or questions please feel free to contact us