strtoupper

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

strtoupper將字符串轉(zhuǎn)化為大寫

說(shuō)明

strtoupper(string $string): string

string 中所有的字母字符轉(zhuǎn)換為大寫并返回。

注意 “字母” 與當(dāng)前所在區(qū)域有關(guān)。例如,在默認(rèn)的 “C” 區(qū)域,字符 umlaut-a(?)就不會(huì)被轉(zhuǎn)換。

參數(shù)

string

輸入字符串。

返回值

返回轉(zhuǎn)換后的大寫字符串。

范例

示例 #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
?>

注釋

注意: 此函數(shù)可安全用于二進(jìn)制對(duì)象。

參見(jiàn)

  • strtolower() - 將字符串轉(zhuǎn)化為小寫
  • ucfirst() - 將字符串的首字母轉(zhuǎn)換為大寫
  • ucwords() - 將字符串中每個(gè)單詞的首字母轉(zhuǎn)換為大寫
  • mb_strtoupper() - 使字符串大寫