字符串大写

str strtoupper(str s); 
//s: 主字符串
//返回:大写后的字符串;

示例

str s="hello 中国";
s=strtoupper(s);
echo (s);

注意