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

PHP验证

时间:2018-07-20 13:57:39      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:hda   文件名   rto   gety   intval   pow   idcard   路径   function   

class yanzhenglei{


    /**
     * 检查日期格式    
     * @param string $str 日期格式2015-01-01
     * @return bool
     */    
    public static function is_date($str){
        if(!self::is_empty($str)) return false; 
        $arg = explode("-",$str);
        return checkdate ($arg[1] ,(int)$arg[2], $arg[0]);
    }
    
    
    /**
     * 检查IP    
     * @param string $str IP地址0.0.0.0
     * @return bool
     */    
    public static function is_ip($str){
        if(!self::is_empty($str)) return false; 
        return ip2long($str) ? TRUE : FALSE;
    }
    
    
    /**
     * 检查手机    
     * @param string $str 手机号码
     * @return bool
     */        
    public static function is_mobile($str){
        if(!self::is_empty($str)) return false;
        $exp = "/^13[0-9]{1}[0-9]{8}$|15[012356789]{1}[0-9]{8}$|177[0-9]{8}$|18[012356789]{1}[0-9]{8}$|14[57]{1}[0-9]$/";
        return preg_match($exp,$str) ? TRUE : FALSE;
    }

    /**
     * 检查用户名    
     * @param string $str    用户名
     * @return bool
     */    
    
    public static function is_username($str){
        if(!self::is_empty($str)) return false;
        return preg_match("/^[A-Z0-9a-z@\.-_]{6,20}$/",$str) ? TRUE : FALSE; 
    }

    /**
     * 检查Email    
     * @param string $str Email地址
     * @return bool
     */    
    
    public static function is_email($str){
        if(!self::is_empty($str)) return false;  
        return preg_match("/([a-z0-9]*[-_\.]?[a-z0-9]+)*@([a-z0-9]*[-_]?[a-z0-9]+)+[\.][a-z]{2,3}([\.][a-z]{2})?/i",$str) ? true : false; 
    }
    
    /**
     * 检查密码字符
     * @param string $str 密码字符
     * @return bool
     */    
    
    public static function is_password($str , $min = 6, $max = 20){
        if(!self::is_empty($str)) return false;
        return preg_match("/^[\\~!@#$%^&*()-_=+|{},.?\/:;\‘\"\d\w]{".$min.",".$max."}$/",$str) ? TRUE : FALSE; 
    }

    
    /**
     * 检查简单密码
     * @param string $str 密码字符
     * @return bool
     */        
    public static function is_complex_password($str , $min = 6, $max = 20){
        if(!self::is_password($str,$min,$max)) return false;
        if(strpos("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890",$str)) return false;
        if(preg_replace("/[\d\w](?=[\d\w])/","\\1", $str) == substr ($str,0,1) ) return false ;
        return true;
        //待补充
    }    
    
    /**
     * 检查整数(含长度)
     * @param int $val 数字
     * @param int $min 最小长度默认1
     * @param int $max 最大长度默认20
     * @return bool
     */    
    public static function is_int($val, $min = 1, $max = 20) {
        return preg_match("/^[0-9]{" . $min . "," . $max . "}$/", $val)? TRUE : FALSE;
    }
    
    /**
     * 检查货币形式
     * @param number $val 数字
     * @return bool
     */    
    public static function is_money($val) {
        if( preg_match("/^[0-9]{1,}$/", $val) ){return TRUE;}
        return preg_match("/^[0-9]{1,}\.[0-9]{1,2}$/", $val)? TRUE : FALSE;
    }
    
    
    /**
     * 检查身份证号
     * @param string $str 身份证号码
     * @return bool
     */    
    public static function is_idcard($str)
    {
        $vCity = array(
            ‘11‘,‘12‘,‘13‘,‘14‘,‘15‘,‘21‘,‘22‘,
            ‘23‘,‘31‘,‘32‘,‘33‘,‘34‘,‘35‘,‘36‘,
            ‘37‘,‘41‘,‘42‘,‘43‘,‘44‘,‘45‘,‘46‘,
            ‘50‘,‘51‘,‘52‘,‘53‘,‘54‘,‘61‘,‘62‘,
            ‘63‘,‘64‘,‘65‘,‘71‘,‘81‘,‘82‘,‘91‘
        );
     
        if (!preg_match(‘/^([\d]{17}[xX\d]|[\d]{15})$/‘, $str)) return false;
     
        if (!in_array(substr($str, 0, 2), $vCity)) return false;
     
        $str = preg_replace(‘/[xX]$/i‘, ‘a‘, $str);
        $vLength = strlen($str);
     
        if ($vLength == 18)
        {
            $vBirthday = substr($str, 6, 4) . ‘-‘ . substr($str, 10, 2) . ‘-‘ . substr($str, 12, 2);
        } else {
            $vBirthday = ‘19‘ . substr($str, 6, 2) . ‘-‘ . substr($str, 8, 2) . ‘-‘ . substr($str, 10, 2);
        }
     
        if (date(‘Y-m-d‘, strtotime($vBirthday)) != $vBirthday) return FALSE;
        if ($vLength == 18)
        {
            $vSum = 0;
     
            for ($i = 17 ; $i >= 0 ; $i--)
            {
                $vSubStr = substr($str, 17 - $i, 1);
                $vSum += (pow(2, $i) % 11) * (($vSubStr == ‘a‘) ? 10 : intval($vSubStr , 11));
            }
     
            if($vSum % 11 != 1) return FALSE;
        }
     
        return true;
    }

    
    /**
     * 检查是否为空    
     * @param string $str 任意待校验的字符串
     * @return bool
     */    
    public static function is_empty($str){  
        $str = trim($str);      
        return !empty($str) ? TRUE : FALSE;  
    }  
    
    /**
     * 检查是否为允许的图片格式JPG PNG GIF
     * @param string $filename 图片文件路径和文件名
     * @return bool
     */    
    public static function is_allow_image($filename){  
        if(!self::is_empty($filename)) return false;
        if(!exif_imagetype($filename)) return false;
        if(!strpos("123",exif_imagetype($filename)) ){return false;}
        return true;
    }      
    
    /**
     * 检查是否为允许的内容格式
     * @param string $str 正文
     * @return bool
     */
    public static function is_trash_content($str){
        return true;
    }
    
}

PHP验证

标签:hda   文件名   rto   gety   intval   pow   idcard   路径   function   

原文地址:https://www.cnblogs.com/songyanan/p/9340774.html

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