当前位置:Gxlcms > PHP教程 > phpstrtolower函数怎么用

phpstrtolower函数怎么用

时间:2021-07-01 10:21:17 帮助过:3人阅读

php strtolower函数用于将字符串转化为小写。strtolower语法是strtolower(string),参数string是必须的,是规定要转换的字符串。

php strtolower函数怎么用?

作用:把所有字符转换为小写

语法:

strtolower(string)

参数:

string 必须,规定要转换的字符串

说明:strtolower() 函数把字符串转换为小写,该函数是二进制安全的。

php strtolower()函数使用示例1:

<?php
$i = "HELLO WORLD";
$j = strtolower($i);
echo $j;
?>

输出:

hello world

php strtolower()函数使用示例2:

<?php
$i = "I'M STUDY IN PHP.CN";
$j = strtolower($i);
echo $j;
?>

输出:

i'm study in php.cn

本篇文章就是关于PHP strtolower函数的介绍,希望对需要的朋友有所帮助!

以上就是php strtolower函数怎么用的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行