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

PHP验证类

时间:2018-07-23 15:03:20      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:fun   str   src   info   reg   划线   使用   验证   cep   

<?php 
    class preg
    {
        public function telP($tel)
        {
            $preg = ‘/^1[34578]\d{9}$/‘;
            $res = preg_match($preg, $tel);
            if(!$res){
                myNotice(‘手机号码格式不正确!‘);
            }
        }

        public function strP($str)
        {
            $preg = ‘/[\<\>\‘\"]/‘;
            $res = preg_match($preg, $str);
            if($res){
                myNotice(‘不能含有引号或括号‘);
            }
        }

        public function numP($num,$name=‘‘)
        {
            $preg = ‘/^\d{1,8}$/‘;
            $res = preg_match($preg, $num);
            if(!$res){
                myNotice($name.‘只能是8位纯数字‘);
            }
            $this->strP($num);
        }

        public function priceP($pri)
        {
            $preg = ‘/^\d{1,8}\.?\d{0,2}$/‘;
            $res = preg_match($preg, $pri);
            if(!$res){
                myNotice(‘单价格式不正确‘);
            }
            $this->strP($num);
        }

        public function pwdP($pwd)
        {
            $preg = ‘/^\w{3,12}$/‘;
            $res = preg_match($preg, $pwd);
            if(!$res){
                myNotice(‘密码只能是3到12位的数字,字母,下划线‘);
            }
        }
    }

以上是验证类的源码

技术分享图片
调用

技术分享图片
使用

PHP验证类

标签:fun   str   src   info   reg   划线   使用   验证   cep   

原文地址:https://www.cnblogs.com/JiangDakang/p/9353971.html

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