|
PHP5中文手册
strtolower(PHP 4, PHP 5) strtolower — Make a string lowercase 说明
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 (A) will not be converted. 参数
返回值Returns the lowercased string. 范例
Example#1 strtolower() example
<?php 注释
|