目录

PHP ucfirst() 函数

❮ PHP 字符串参考

示例

将 "hello" 的第一个字符转换为大写:

<?php
echo ucfirst("hello world!");
?>
亲自试一试 »

定义和用法

ucfirst() 函数将字符串的第一个字符转换为大写。

相关功能:

  • lcfirst()- 将字符串的第一个字符转换为小写
  • ucwords()- 将字符串中每个单词的第一个字符转换为大写
  • strtoupper()- 将字符串转换为大写
  • strtolower()- 将字符串转换为小写

语法

ucfirst( string)

参数值

Parameter Description
string Required. Specifies the string to convert

技术细节

返回值: 返回转换后的字符串
PHP 版本: 4+

❮ PHP 字符串参考