【函数功能】
该函数把指定字符串中的首字母转换为小写,若字符串首字符不是字母,则返回原字符串。
【函数语法】
lcfirst ($str)
【参数说明】
$str:必需,要转换的字符串。
【演示程序】
<?php
/**
* lcfirst ($str)
* **/
$str = "Hello i am PHP!";
echo lcfirst($str);
echo "<br>";
$str = "_hello i am PHP!";//首字符不是字母
echo lcfirst($str);
?>
【输出结果】
hello i am PHP!
_hello i am PHP!
【特别注意】
1.只有在首字符是字母的情况下会转换。
2.PHP 版本:5.3.0+。
【原版定义】
/**
* Make a string's first character lowercase
* @link http://www.php.net/manual/en/function.lcfirst.php
* @param str string <p>
* The input string.
* </p>
* @return string the resulting string.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2016/0928/82.html