码迷,mamicode.com
首页 > 移动开发 > 详细

php验证手机号

时间:2017-06-16 17:36:23      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:php验证手机号

1.实现代码如下

        /**
	 * 	验证手机号
	 * @param  [type] $tel [description]
	 * @return [type]      [description]
	 */
	function validatePhoneno($tel){
		//正则表达式 
		if(strlen($tel) == "11"){ 
			//上面部分判断长度是不是11位 
			$n = preg_match_all("/13[123569]{1}\d{8}|15[1235689]\d{8}|188\d{8}/",
			$tel,$array); 
			/*接下来的正则表达式("/131,132,133,135,136,139开头随后跟着任意的8为数字 ‘|
			‘(或者的意思) 
			 * 151,152,153,156,158.159开头的跟着任意的8为数字 
			 * 或者是188开头的再跟着任意的8为数字,匹配其中的任意一组就通过了 
			 * /")*/
			if (empty($array)) {
				return false;
			}

			return true;
		}else{ 
		    return false;
		} 
	}


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1939080

php验证手机号

标签:php验证手机号

原文地址:http://suyanzhu.blog.51cto.com/8050189/1939080

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!