PHP常用正则验证(手机号,身份证,ip验证)

//正则验证手机号 正确返回 truefunction preg_mobile($mobile) {if(preg_match(/^1[34578]\d{9}$/, $mobile)) {return TRUE;} else {return FALSE;}}//验证电话号码function preg_tel($tel) {if(preg_match(/^(\(\d{3,4}\)|\d{3,4}-)?\d{7,8}$/, $tel)) {re
//正则验证手机号 正确返回 true
function preg_mobile($mobile) {
if(preg_match("/^1[34578]\d{9}$/", $mobile)) {
return TRUE;
} else {
return FALSE;
}
}
//验证电话号码
function preg_tel($tel) {
if(preg_match("/^(\(\d{3,4}\)|\d{3,4}-)?\d{7,8}$/", $tel)) {
return TRUE;
} else {
return FALSE;
}
}
//验证身份证号(15位或18位数字)
function preg_idcard($idcard) {
if(preg_match("/^\d{15}|\d{18}$/", $idcard)) {
return TRUE;
} else {
return FALSE;
}
}
//验证是否是数字(这里小数点会认为是字符)
function preg_digit($digit) {
if(preg_match("/^\d*$/", $digit)) {
return TRUE;
} else {
return FALSE;
}
}
//验证是否是数字(可带小数点的数字)
function preg_num($num) {
if(is_numeric($num)) {
return TRUE;
} else {
return FALSE;
}
}
//验证由数字、26个英文字母或者下划线组成的字符串
function preg_str($str) {
if(preg_match("/^\w+$/", $str)) {
return TRUE;
} else {
return FALSE;
}
}
//验证用户密码(以字母开头,长度在6-18之间,只能包含字符、数字和下划线)
function preg_password($str) {
if(preg_match("/^[a-zA-Z]\w{5,17}$/", $str)) {
return TRUE;
} else {
return FALSE;
}
}
//验证汉字
function preg_chinese($str) {
if(preg_match("/^[\u4e00-\u9fa5],{0,}$/", $str)) {
return TRUE;
} else {
return FALSE;
}
}
//验证Email地址
function preg_email($email) {
if(preg_match("/^\w+[-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/", $email)) {
return TRUE;
} else {
return FALSE;
}
}
//验证网址URL
function preg_link($url) {
if(preg_match("/http:\/\/[\w.]+[\w\/]*[\w.]*\??[\w=&\+\%]*/is", $url)) {
return TRUE;
} else {
return FALSE;
}
}
//腾讯QQ号
function preg_qq($qq) {
if(preg_match("/^[1-9][0-9]{4,}$/", $qq)) {
return TRUE;
} else {
return FALSE;
}
}
//验证中国邮政编码 6位数字
function preg_post($post) {
if(preg_match("/^[1-9]\d{5}(?!\d)$/", $post)) {
return TRUE;
} else {
return FALSE;
}
}
//验证IP地址
function preg_ip($ip) {
if(preg_match("/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/", $ip)) {
return TRUE;
} else {
return FALSE;
}
}

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

今天在用php进行图片保存输出时候,图片一直显示错误,后面用调试模式下提示:Warning: Cannot modify header information - headers already sent by... 看了一些网上的方法也没解决,最后在php.ini配置output_buffering默认为4096就没有遇到这个错误了: o
ob_start()函数用于打开缓冲区,比如header()函数之前如果就有输出,包括回车/空格/换行/都会有Header had all ready send by的错误,这时可以先用ob_start()打开缓冲区PHP代码的数据块和echo()输出都会进入缓冲区而不会立刻输出.当然打开缓冲区的作用很多,只要
第一种方法:用php的strpos() 函数判断字符串中是否包含某字符串的方法 if(strpos(www.genban.org,genban) !== false){ echo 包含genban; }else{ echo 不包含genban; } 第二种 使用了explode 用explode进行判断PHP判断字符串的包含代码如下: ?php $name = 00
/u 表示按unicode(utf-8)匹配(主要针对多字节比如汉字) /i 表示不区分大小写(如果表达式里面有 a, 那么 A 也是匹配对象) /s 表示将字符串视为单行来匹配
随机生成难点是在于如何避免碰撞,有人说用md5,GUID这些机制啊,当然可以,但是做为账号,看着有乱,而且生成位数也过长。 本方法只需要解决1秒内的并发碰撞就可以,因为固定头部采用的是unixtime时间,精确到秒,超过1秒,这个头部的时间肯定变化了。同时
根据移动、联通、电信的电话号码号段,实现一个简单的正则表达式来验证手机号码: // 手机号校验export function isPhoneNumber(phoneNum) { // let reg = /^[1][3,4,5,7,8,9][0-9]{9}$/; /* * 移动号码包括的号段:134/135/136/137,138,139; * 147/148(物