(PHP 5 >= 5.3.0, PHP 7)
lcfirst — 使一个字符串的第一个字符小写
$str
)
返回str
的第一个字符小写了的字符串。如果str
的第一个字符是字母,则将其转换为小写。
需要注意的是“字母”是由当前语言区域决定的。比如,在默认的“C”区域像日耳曼语系中的元音变音a (ä) 将不会被转换。
str
输入的字符串。
返回转换后的字符串。
Example #1 lcfirst() 例子:
<?php
$foo = 'HelloWorld';
$foo = lcfirst($foo); // helloWorld
$bar = 'HELLO WORLD!';
$bar = lcfirst($bar); // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>