字符串大写

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

示例

str s="HELLO 中国";
s=strtolower(s);
echo (s);

注意