📜  php 转小写 - PHP (1)

📅  最后修改于: 2023-12-03 15:18:32.400000             🧑  作者: Mango

PHP 转小写

在 PHP 中,您可以使用内置函数将字符串转换为小写字母。

语法
strtolower(string $str): string
参数
  • $str:要转换为小写字母的字符串。
返回值

返回转换为小写字母后的字符串。

示例
$string = "PHP 转小写";
echo strtolower($string);

输出:

php 转小写
建议
  • 在进行 strtolower() 函数调用之前,请确认您的字符串不为空或者为 null 值。
  • strtolower() 函数不会更改原始字符串,而是返回转换后的字符串。
  • 对于任何国际字符,建议使用 mb_strtolower() 而不是 strtolower()
参考链接