PHP - strtoupper() 函数



PHP 的 strtoupper() 函数用于将给定字符串中的所有字母字符(即 a 到 z)转换为大写。术语“大写”指的是字母系列中的“大写字母”字符,例如 A、B、C、…D。

如果给定的字符串已经是大写,则此函数不会影响原始字符串,并将保持不变。

语法

以下是 PHP strtoupper() 函数的语法:

strtoupper(string $str): string

参数

此函数接受一个参数,如下所述:

  • string: 需要转换为大写的输入字符串。

返回值

此函数返回所有字母字符都已转换为大写的字符串。

示例 1

以下是 PHP strtoupper() 函数的基本示例:

<?php
   $str = "tutorialspoint";
   echo "The given string: $str";
   echo "\nThe string after converting into uppercase: ";
   #using strtoupper() function
   echo strtoupper($str);
?>

输出

上述程序产生以下输出:

The given string: tutorialspoint
The string after converting into uppercase: TUTORIALSPOINT

示例 2

这是使用 PHP strtoupper() 函数的另一个示例。此函数将给定字符串“hEllO WoRLd!”中的所有字母字符转换为大写:

<?php
   $str = "hEllO WoRLd!";
   echo "The given string: $str";
   echo "\nThe string after converting into uppercase: ";
   #using strtoupper() function
   echo strtoupper($str);
?>

输出

以下是上述程序的输出:

The given string: hEllO WoRLd!
The string after converting into uppercase: HELLO WORLD!

示例 3

如果给定的字符串已经是大写,则 PHP strtoupper() 函数不会影响原始字符串,它将保持不变:

<?php
   $str = "HELLO FROM TP!";
   echo "The given string: $str";
   echo "\nThe string after converting into uppercase: ";
   #using strtoupper() function
   echo strtoupper($str);
?>

输出

执行上述程序后,将显示以下输出:

The given string: HELLO FROM TP!
The string after converting into uppercase: HELLO FROM TP!
php_function_reference.htm
广告