Документ взят из кэша поисковой машины. Адрес оригинального документа : http://old.master.cmc.msu.ru/php/function.strtolower.html
Дата изменения: Sun Feb 3 22:56:39 2002
Дата индексирования: Tue Oct 2 04:45:02 2012
Кодировка:
strtolower

strtolower

(PHP 3 <= 3.0.18, PHP 4 >= 4.0.0)

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(), ucfirst(), and ucwords().