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