strtoupper() 函数把字符串转换为大写。
strtoupper(string)
<?php echo strtoupper("Hello WORLD!"); ?>
输出:
HELLO WORLD!