strtoupper

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

strtoupper将字符串转化为大写

说明

strtoupper(string $string): string

string 中所有 ASCII 字母字符转换为大写并返回。

"a"(0x61)到 "z"(0x7a)范围内的字节会通过将每个字节值减 32 转为相应的大写字母。

这可用于转换用 UTF-8 编码的字符串中的 ASCII 字符,但会忽略多字节 UTF-8 字符。要转换多字节非 ASCII 字符,请使用 mb_strtoupper()

参数

string

输入字符串。

返回值

返回转换后的大写字符串。

更新日志

版本 说明
8.2.0 大小写转换不在依赖于使用 setlocale() 设置的区域。只会转换 ASCII 字符。

范例

示例 #1 strtoupper() 范例

<?php
$str
= "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo
$str; // 打印 MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
?>

注释

注意: 此函数可安全用于二进制对象。

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top