在PHP中,我们可以使用函数mb_strtolower()将给定的字符串更改为小写。它返回所有字母字符都转换为小写字符的字符串。
用法
string mb_strtolower(str $string, str $encoding)
参数
mb_strtolower()接受两个参数:$string和$encoding。
$string−被小写的字符串返回所有字母字符都转换为小写字符的字符串。
$encoding−该参数是字符编码。如果它不存在或为空,则将使用内部字符编码值。
返回值
string将所有字母字符转换为小写。
示例
<?php
// Upper and lower case characters are used to
// convert in lower case using mb_strtoloower function
$string = "Hello World!, Welcome to ONLINE tutorials";
// It gives the output in lower case
$string = mb_strtolower($string);
echo $string;
?>
输出
它会将给定字符串中的所有字符转换为其小写。
hello world! welcome to online tutorials
相关用法
- PHP mb_strtoupper()用法及代码示例
- PHP mb_strlen()用法及代码示例
- PHP mb_substitute_character()用法及代码示例
- PHP mb_substr_count()用法及代码示例
- PHP mb_substr()用法及代码示例
- PHP mb_check_encoding()用法及代码示例
- PHP mb_detect_order()用法及代码示例
- PHP mb_chr()用法及代码示例
- PHP mb_convert_case()用法及代码示例
- PHP metaphone()用法及代码示例
- PHP mhash_get_hash_name()用法及代码示例
- PHP mysqli_get_server_info()用法及代码示例
- PHP money_format()用法及代码示例
- PHP mysqli_data_seek()用法及代码示例
- PHP mysqli_insert_id()用法及代码示例
- PHP mysqli_fetch_assoc()用法及代码示例
- PHP mkdir()用法及代码示例
- PHP mysqli_connect_error()用法及代码示例
- PHP mhash_keygen_s2k()用法及代码示例
注:本文由纯净天空筛选整理自Urmila Samariya大神的英文原创作品 PHP – Make a lower case string using mb_strtolower()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。