(PHP 4, PHP 5, PHP 7, PHP 8)
strtoupper — 將字符串轉(zhuǎn)化為大寫
$string
): string
將 string
中所有的字母字符轉(zhuǎn)換為大寫并返回。
注意 “字母” 與當(dāng)前所在區(qū)域有關(guān)。例如,在默認(rèn)的 “C” 區(qū)域,字符 umlaut-a(?)就不會(huì)被轉(zhuǎn)換。
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ì)象。