小码哥的IT人生

首页 > PHP > php基础

PHP strtolower() 字符串 函数 详解

php基础 2022-06-07 17:04:04小码哥的IT人生shichen

PHP strtolower() 函数

实例

把所有字符转换为小写:

<?php
echo strtolower("Hello WORLD.");
?>

完整实例:

<!DOCTYPE html>
<html>
<body>
<?php
echo strtolower("Hello WORLD.");
?>
</body>
</html>

 

定义和用法

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

注释:该函数是二进制安全的。

相关函数:

  1. lcfirst() - 把字符串中的首字符转换为小写
  2. strtoupper() - 把字符串转换为大写
  3. ucfirst() - 把字符串中的首字符转换为大写
  4. ucwords() - 把字符串中每个单词的首字符转换为大写

语法

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

技术细节

返回值: 返回转换为小写的字符串。
PHP 版本: 4+

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024