strtolower函数: 该函数将传入的字符串参数所有的字符都转换成小写。
<?php $str = "I want To FLY"; $str = strtolower($str); echo $str; //by freexyz.cn ?>
输出:
i want to fly
© 版权声明
THE END
strtolower函数: 该函数将传入的字符串参数所有的字符都转换成小写。
<?php $str = "I want To FLY"; $str = strtolower($str); echo $str; //by freexyz.cn ?>
输出:
i want to fly
暂无评论内容