PHP 字符串 lcfirst()函数
lcfirst()是内置的PHP字符串函数。它用于将字符串的第一个字符转换为小写。换句话说,它可以将字符串的第一个字符转换为小写。它返回转换后的字符串。
以下是相关的函数:
- ucfirst() :将字符串的第一个字符转换为大写。
- ucwords() :将字符串的每个单词的第一个字符转换为大写。
- strtoupper() :将字符串转换为大写。
- strtolower() :将字符串转换为小写。
语法
string lcfirst ( string $str );
参数 | 描述 | 必需/可选 |
---|---|---|
string | 指定要转换的字符串 | 必需 |
示例1
<?php
echo "Before using lcfirst() function:PHP"."<br>";
arr = lcfirst("PHP");
echo "After using 'lcfirst()' function: ".arr;
?>
输出:
Before using lcfirst() function:PHP
After using 'lcfirst()' function: pHP
示例2
<?php
echo "Before using lcfirst() function: HELLO PHP"."<br>";
arr = lcfirst("HELLO PHP");
echo "After using 'lcfirst()' function: ".arr;
?>
输出:
Before using lcfirst() function: HELLO PHP
After using 'lcfirst()' function: hELLO PHP