strtolower() Function
函数的作用是:将字符串转换为小写。这个函数接受一个字符串作为参数,并将字符串中出现的所有大写英文字母转换为小写。字符串中的所有其他数字字符或特殊字符保持不变。
语法
1 | string strtolower( $string ) |
参数:此函数的唯一参数是要转换为小写的字符串。
返回值:这个函数返回一个字符串,其中所有字母都是小写的。
例子
1 2 3 4 5 6 7 | Input : $str = "LOVEofSKY8G" strtolower($str) Output: loveofsky8g Input : $str = "going BACK he SAW THIS 123$#%" strtolower($str) Output: going back he saw this 123$#% |
程序1
1 2 3 4 5 6 7 8 9 10 11 | <?php // original string $str = "lOVEOFsKY8G"; // string converted to lower case $resStr = strtolower($str); print_r($resStr); ?> |
输出
1 | loveofsky8g |
程序2
1 2 3 4 5 6 7 8 9 10 11 | <?php // original string $str = "going BACK he SAW THIS 123$#%"; // string converted to lower case $resStr = strtolower($str); print_r($resStr); ?> |
输出
1 | going back he saw this 123$#% |
参考