目录

PHP strtoupper() 函数

❮ PHP 字符串参考

示例

将所有字符转换为大写:

<?php
echo strtoupper("Hello WORLD!");
?>
亲自试一试 »

定义和用法

strtoupper() 函数将字符串转换为大写。

笔记:该函数是二进制安全的。

相关功能:

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

语法

strtoupper( string)

参数值

Parameter Description
string Required. Specifies the string to convert

技术细节

返回值: 返回大写字符串
PHP 版本: 4+

❮ PHP 字符串参考