关于中英文数字长度限制
简易版本
$preg='([\x80-\xffa-zA-Z0-9_]+)';
function V_uaername($str){
//判断只允许中文.字母,数字
$preg='([\x80-\xffa-zA-Z0-9_]+)';
preg_match($preg,$str,$matchs);
echo $matchs[0];
if ($str==$matchs[0] and $str!='') {
return 1;//合法
}else{
return 0;//不合法
}
}
长度限制1到20
function strlen($realname) {
return preg_match("/[\x80-\xff0-9A-Za-z]{1,20}$/", $realname) ? true : false;
}