作用:把所有字符转换为小写。大理石量具
语法:strtolower(string)
参数:
说明:strtolower() 函数把字符串转换为小写,该函数是二进制安全的。
<?php $i = "HELLO WORLD"; $j = strtolower($i); echo $j; ?>