定义和用法

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

语法

strtolower(string)

参数解析

参数描述string必需。规定要转换的字符串。

示例

<?phpechostrtolower("HelloWORLD.");?>

输出

helloworld.