PHP中的lcfirst()函数

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!