Rumah > Artikel > pembangunan bahagian belakang > php如何把首字母转为小写
php把首字母转为小写的方法是,把字符串作为参数传递给lcfirst函数即可,如【lcfirst("Hello world!");】。lcfirst函数会自动把字符串中的首字符转为小写。
本文操作环境:windows10系统、php 7.3、thinkpad t480电脑。
在php中有一个函数可以便捷地将字符串中的首字符转换为小写,它就是lcfirst函数。下面我们就来简单介绍下lcfirst函数。
lcfirst() 函数把字符串中的首字符转换为小写,返回已转换的字符串。
语法:
lcfirst(string)
代码示例:
<!DOCTYPE html> <html> <body> <?php echo lcfirst("Hello world!"); ?> </body> </html>
运行结果:
hello world!
相关视频教程分享:php视频教程
Atas ialah kandungan terperinci php如何把首字母转为小写. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!