哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

ucfirst

(PHP 4, PHP 5, PHP 7, PHP 8)

ucfirst将字符串的首字母转换为大写

说明

ucfirst(string $str): string

str 的首字符(如果首字符是字母)转换为大写字母,并返回这个字符串。

注意字母的定义取决于当前区域设定。例如,在默认的 “C” 区域,字符 umlaut-a(ä)将不会被转换。

参数

str

输入字符串。

返回值

返回结果字符串。

范例

示例 #1 ucfirst() 范例

<?php
$foo 
'hello world!';
$foo ucfirst($foo);             // Hello world!

$bar 'HELLO WORLD!';
$bar ucfirst($bar);             // HELLO WORLD!
$bar ucfirst(strtolower($bar)); // Hello world!
?>

参见

打开 哈希空间 微信小程序中查看更佳