在PHP中,lcfirst() 函数用于将字符串的第一个字符转换为小写。以下是一个示例:
lcfirst()
$str = "HelloWorld"; $lowerStr = lcfirst($str); echo $lowerStr; // 输出 "helloWorld"
在这个示例中,lcfirst() 函数将字符串 “HelloWorld” 的第一个字符 “H” 转换为小写 “h”,并返回新的字符串 “helloWorld”。