ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# PHP ucfirst() 函数 ## 定义和用法 ucfirst() 函数把字符串中的首字符转换为大写。 ### 语法 ``` ucfirst(string) ``` | 参数 | 描述 | | --- | --- | | string | 必需。规定要转换的字符串。 | ## 例子 ``` <?php echo ucfirst("hello world"); ?> ``` 输出: ``` Hello world ```