作用:把所有字符转换为大写
语法:strtoupper(string)
参数:
说明:strtoupper() 函数把字符串转换为大写,该函数是二进制安全的。
<?php $i = "hello world"; $j = strtoupper($i); echo $j; ?>