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

 


 ПОДПИСКА

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




strtolower

strtolower

(PHP3 , PHP4 )

strtolower -- Make a string lowercase

Description

string strtolower (string str)

Returns string with all alphabetic characters converted to lowercase.

Note that 'alphabetic' is determined by the current locale. This means that in i.e. the default "C" locale, characters such as umlaut-A (Д) will not be converted.

Example 1. Strtolower() example


$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtolower($str);	
print $str; # Prints mary had a little lamb and she loved it so
     

See also strtoupper() and ucfirst().



With any suggestions or questions please feel free to contact us