php中转换首字母大写的函数是什么
时间:2022-02-11 13:50
在php中,转换首字母大写的函数是ucfirst(),该函数的作用就是将字符串的首字母转化为大写,语法“ucfirst(string)”。 本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑 在php中,想要转换首字母大写,可以使用ucfirst()函数。(相反,想要转换首字母小写,可以使用lcfirst()函数。) ucfirst 函数能够将字符串的第一个字母转化为大写。语法格式如下: 其中,$string 为需要转化的字符串。 示例: 输出结果: 推荐学习:《PHP视频教程》 以上就是php中转换首字母大写的函数是什么的详细内容,更多请关注gxlsystem其它相关文章!ucfirst($string)
<?php
$str = 'hello world!';
$str = ucfirst($str);
echo $str.'<br>';
$str2 = 'HELLO WORLD!';
$str2 = ucfirst(strtolower($str2));
echo $str2;
?>
Hello world!
Hello world!