PHP String 参考手册
把 "Hello" 的首字符转换为小写。:
<?php echo lcfirst("Hello world!"); ?>
运行结果:
Hello world!
lcfirst() 函数把字符串中的首字符转换为小写。
相关函数:
lcfirst(string)