- /**
- * 検証クラス
- *
- * @lastmodify 2014-5-16
- * @author jy625
- */
- class VerifyAction{
- /**
- * null値かどうか
- */
- public static function isEmpty($str){
- $str =trim($str);
- !empty($str) を返す ?真/偽;
- }
- /**
- * 数値検証
- * param:$flag: int が整数か float が浮動小数点型かどうか
- */
- public static function isNum($str,$flag = 'float'){
- if(!self::isEmpty($str)) return false;
- if(strto lower($flag) == 'int'){
- return ((string)(int)$str === (string)$str) ?真/偽;
- }else{
- return ((string)(float)$str === (string)$str) ?真/偽;
- }
- }
- /**
- * ユーザー名、ディレクトリ名などの名前の一致
- * @param:string $str 一致する文字列
- * @param:$chinese 中国語をサポートするかどうか、ファイル名を一致させる場合はデフォルトでサポートされます。 、これをオフにすることをお勧めします ( false )
- * @param:$charset エンコーディング (デフォルトは utf-8、gb2312 をサポートします)
- */
- public static function isName($str,$chinese = true,$charset = 'utf-8'){
- if(!self::isEmpty($str)) false を返します。
- if($chinese){
- $match = (strto lower($charset) == 'gb2312') ? "/^[".chr(0xa1)."-".chr(0xff)."A-Za-z0-9_-]+$/" : "/^[x{4e00}-x{9fa5}A- Za-z0-9_]+$/u";
- }else{
- $match = '/^[A-za-z0-9_-]+$/';
- }
- return preg_match($match,$str) ?真/偽;
- }
- /**
- * メール認証
- */
- public static function isEmail($str){
- if(!self::isEmpty($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) ?真/偽;
- }
- //手机号验证
- public static function isMobile($str){
- $exp = "/^13[0-9]小贝[0-9]{8}$|15[012356789]小贝[ 0-9]{8}$|18[012356789]小贝[0-9]{8}$|14[57]小贝[0-9]$/";
- if(preg_match($exp,$str)){
- true を返します。
- }else{
- false を返します。
- }
- }
- /**
- * URL検証、純粋なURL形式、IP検証はサポートされていません
- */
- public static function isUrl($str){
- if(!self::isEmpty($str)) return false;
- return preg_match('#(http|https|ftp|ftps)://([w-]+.)+[w-]+(/[w-./?%&=]*)?#i' ,$str) ?真/偽;
- }
- /**
- * 中国語を確認します
- * @param:string $str 照合する文字列
- * @param:$charset エンコーディング (デフォルトは utf-8、gb2312 をサポートします)
- */
- public static function is Chinese($str,$charset = 'utf-8'){
- if(!self::isEmpty($str)) return false;
- $match = (strto lower($charset) == 'gb2312') ? "/^[".chr(0xa1)."-".chr(0xff)."]+$/"
- : "/^[x{4e00}-x{9fa5}]+$/u";
- preg_match($match,$str) を返す ?真/偽;
- }
- /**
- * UTF-8 検証
- */
- public static function isUtf8($str){
- if(!self::isEmpty($str)) return false;
- return (preg_match("/^([".chr(228)."-".chr(233)."]小贝[".chr(128)."-".chr(191)."]小贝[".chr(128)."-".chr(191)."]小贝)小贝/",$word)
- == true || preg_match("/([".chr(228). "-".chr(233)."]小贝[".chr(128)."-".chr(191)."]小贝[".chr(128)."-".chr(191) ."]小贝)小贝$/",$word)
- == true || preg_match("/([".chr(228)."-".chr(233)."]小贝[". chr(128)."-".chr(191)."]小贝[".chr(128)."-".chr(191)."]小贝){2,}/",$word)
- == true) ?真/偽;
- }
- /**
- * 検証の長さ
- * @param: string $str
- * @param: int $type (メソッド、デフォルト min <= $str <= max)
- * @param: int $min、$max、最大値
- * @param: 文字列 $charset 文字
- */
- public static function length($str,$type=3,$min=0,$max=0,$charset = 'utf-8'){
- if(!self:: isEmpty($str)) false を返します。
- $len = mb_strlen($str,$charset);
- switch($type){
- case 1: //只適合最小值
- return ($len >= $min) ?真/偽;
- 休憩;
- case 2: //只一致最大值
- return ($max >= $len) ?真/偽;
- 休憩;
- デフォルト: //min <= $str <= max
- return (($min <= $len) && ($len <= $max)) ?真/偽;
- }
- }
- /**
- * 認証パスワード
- * @param string $value
- * @param int $length
- * @return boolean
- */
- パブリック静的関数 isPWD($value,$minLen=6,$maxLen=16){
- $match='/^[\~!@#$%^& *()-_=+|{}
- ,.?/:;'"dw]{'.$minLen.','.$maxLen.'}$/';
- $v = trim($value);
- if(empty($v))
- return false;
- return preg_match($match,$v);
- /**
- * ユーザー名を確認します
- * @param string $value
- * @param int $length
- * @return boolean
- */
- public static function isNames($value, $minLen=2, $ maxLen=16, $charset='ALL'){
- if(empty($value))
- return false;
- switch($charset){
- case 'EN': $match = '/^[_wd]{'。 $minLen.','.$maxLen.'}$/iu';
- ブレーク;
- case 'CN':$match = '/^[_x{4e00}-x{9fa5}d]{'.$minLen. ','.$maxLen.'}$/iu';
- ブレイク;
- デフォルト:$match = '/^[_wdx{4e00}-x{9fa5}]{'.$minLen.','.$maxLen. '}$/iu';
- }
- return preg_match($match,$value);
- /**
- * 確認メール
- * @param string $value
- */
- if(strlen($str)! =6){
- false を返します;
- }
- if(substr($str,0,1)==0){
- return false;
- }
- true を返します。
- }
- /**
- * 日付の一致
- * @param string $value
- */
- public static function checkDate($str){
- $dateArr =explode("-", $str);
- if (is_numeric($dateArr[0]) && is_numeric($dateArr[1]) && is_numeric($dateArr[2])) {
- if (($dateArr[0] >= 1000 && $timeArr[0]) <= 10000) && ($dateArr[1] >= 0 && $dateArr[1] <= 12) && ($dateArr[2] >= 0 && $dateArr[2] <= 31))
- true を返します。
- それ以外の場合は
- false を返します。
- }
- false を返します。
- }
- /**
- * マッチング時間
- * @param string $value
- */
- public static function checkTime($str){
- $timeArr =explode(":", $str);
- if (is_numeric($timeArr[0]) && is_numeric($timeArr[1]) && is_numeric($timeArr[2])) {
- if (($timeArr[0] >= 0 && $timeArr[0]) = 0 && $timeArr[1] = 0 && $timeArr[2] true を返します。
- それ以外の場合は
- false を返します。
- }
- false を返します。
- }
- }
-
-
- 复制代
|
很好、PHP