好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

php怎样把字符串转换成小写形式

php把字符串转换成小写形式的方法:可以利用内置函数strtolower()来进行转换。strtolower()函数可以把字符串中的全部大写字母转换为小写,例如【strtolower("Hello WORLD.")】。

strtolower() 函数把字符串转换为小写。

(推荐教程:php视频教程)

语法:

strtolower(string)

举例:

<?php
echo strtolower("Hello WORLD.");
?>

运行结果:

hello world.

相关推荐:php培训

以上就是php怎样把字符串转换成小写形式的详细内容!

查看更多关于php怎样把字符串转换成小写形式的详细内容...

  阅读:46次