手机号码验证判断php函数
- function checkMobile($str)
- {
- $pattern = "/^(13|15)d{9}$/";
- if (preg_match($pattern,$str))
- {
- Return true;
- }
- else
- {
- Return false;
- }
- }
-
- //调用函数
- $str = checkMobile("15800000001");
- if($str)
- {
- echo("符合手机号码标准");
- }
- else
- {
- echo("不符合手机号码标准");
- }
- ?>
-
http://www.bkjia.com/PHPjc/486215.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/486215.htmlTechArticle手机号码验证判断php函数 ?php function checkMobile($str) { $pattern = "/^(13|15)d{9}$/"; if (preg_match($pattern,$str)) { Return true; } else { Return false; } } //调用函数...