lcfirst函数用于使字符串的第一个字符小写。它返回转换后的字符串。
lcfirst(str)
str-要转换的字符串。
该lcfirst()
函数返回转换后的字符串。
以下是一个例子-
<?php echo lcfirst("Welcome to the website"); ?>
输出结果
以下是输出-
welcome to the website
让我们看另一个例子-
<?php $res = 'WEB WORLD!'; $res = lcfirst($res); echo $res; $res = lcfirst(strtoupper($res)); echo $res; ?>
输出结果
以下是输出-
wEB WORLD!wEB WORLD!