不言不语

您现在的位置是: 首页 >  PHP

PHP

PHP将所有单词改为小写

2022-06-04PHP
将字符串首字母改为小写,返回转换后的字符串


$str = "Hello Word"; 
$str = strtolower($str); 
echo $str; //输出hellow word

直接使用PHP内置函数即可实现



文章评论