标签:ucfirst() 函数
ucfirst() 函数把字符串中的首字符转换为大写
ucfirst(string)
参数解析
参数 | 描述 |
---|---|
string | 必需。规定要转换的字符串。 |
示例
<?php
echo ucfirst("hello world!");
?>
输出
Hello world!
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1896243
标签:ucfirst() 函数
原文地址:http://suyanzhu.blog.51cto.com/8050189/1896243