PHP String 函数
strtolower() 函数把字符串转换为小写。
strtolower(string)
<?php echo strtolower("Hello WORLD!"); ?>
strtolower("Hello WORLD!")
输出:
hello world!
Search: