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