php下常用表单验证的正则表达式
-
function is_email($str){
-
-
return preg_match("/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/", $str);
-
}
-
-
function is_url($str){
-
-
return preg_match("/^http:\/\/[A-Za-z0-9]+\.[A-Za-z0-9]+[\/=\?%\-&_~`@[\]\':+!]*([^<>\"])
-
-
*$/", $str);
-
}
-
-
function is_qq($str){
-
-
-
return preg_match("/^[1-9]\d{4,8}$/", $str);
-
}
-
-
function is_zip($str){
-
-
-
return preg_match("/^[1-9]\d{5}$/", $str);
-
}
-
-
function is_idcard($str){
-
-
-
return preg_match("/^\d{15}(\d{2}[A-Za-z0-9])?$/", $str);
-
}
-
-
function is_chinese($str){
-
-
检验是否是中文
-
return ereg("^[".chr(0xa1)."-".chr(0xff)."]+$",$str);
-
}
-
-
function is_english($str){
-
-
-
return preg_match("/^[A-Za-z]+$/", $str);
-
}
-
-
function is_mobile($str){
-
-
-
return preg_match("/^((\(\d{3}\))|(\d{3}\-))?13\d{9}$/", $str);
-
}
-
-
function is_phone($str){
-
-
-
return preg_match("/^((\(\d{3}\))|(\d{3}\-))?(\(0\d{2,3}\)|0\d{2,3}-)?[1-9]\d{6,7}$/",
-
-
$str);
-
}
-
-
function is_safe($str){
-
return (preg_match("/^(([A-Z]*|[a-z]*|\d*|[-_\~!@#\$%\^&\*\.\(\)\[\]\{\}<>\?\\\/\'\"]*)|.
-
-
{0,5})$|\s/", $str) != 0);
-
}
-
}
相关文章
热门资讯