时间:2021-07-01 10:21:17 帮助过:63人阅读
php把字符串转换成小写形式的方法:可以利用内置函数strtolower()来进行转换。strtolower()函数可以把字符串中的全部大写字母转换为小写,例如【strtolower("Hello WORLD.")】。
strtolower() 函数把字符串转换为小写。
(推荐教程:php视频教程)
语法:
strtolower(string)
举例:
<?php echo strtolower("Hello WORLD."); ?>
运行结果:
hello world.
相关推荐:php培训
以上就是php怎样把字符串转换成小写形式的详细内容,更多请关注gxlcms其它相关文章!