PHP実装の通常の正規検証helper共通クラスの完全なインスタンス

4595 ワード

本明細書の例では、PHP実装の従来の正規検証helper共通クラスについて説明する.皆さんの参考にしてください.具体的には以下の通りです.
主なコード機能:普段のプロジェクトが検証機能に対する厳格さを補う.具体的な細分化の通常検証、携帯電話番号/電話/小霊通検証、文字列長区間合法検証、メールボックス検証、正則検証データを使用する.

/**
 *
 *
 *     helper   
 *
 *
 */
class CheckForm
{
  //   /  /      
  public function Mobile_check($mobile,$type = array())
  {
    /**
    *     
    *   :134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188
    *   :130,131,132,152,155,156,185,186
    *   :133,1349,153,180,189
    */
    $res[1]= preg_match('/^1(3[0-9]|5[0-35-9]|8[0-9])\\d{8}$/', $mobile);
    /**
    *     :China Mobile
    11   * 134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188
    */
    $res[2]= preg_match('/^1(34[0-8]|(3[5-9]|5[017-9]|8[0-9])\\d)\\d{7}$/', $mobile);
    /**
    *     :China Unicom
    * 130,131,132,152,155,156,185,186
    */
    $res[3]= preg_match('/^1(3[0-2]|5[256]|8[56])\\d{8}$/', $mobile);
    /**
    *     :China Telecom
    * 133,1349,153,180,189
    */
    $res[4]= preg_match('/^1((33|53|8[09])[0-9]|349)\\d{7}$/', $mobile);
    /**
    *           
    *   :010,020,021,022,023,024,025,027,028,029
    *   :     
    */
    $res[5]= preg_match('/^0(10|2[0-5789]|\\d{3})-\\d{7,8}$/', $mobile);
    $type = empty($type) ? array(1,2,3,4,5) : $type;
    $ok = false;
    foreach ($type as $key=>$val)
    {
      if ($res[$val])
      {
        $ok = true;
      }
      continue;
    }
    if ( $mobile && $ok )
    {
      return true;
    } else{
      return false;
    }
  }
  //           
  public function Strlength_check($str, $min=NULL, $max=NULL)
  {
    preg_match_all("/./u", $str, $matches);
    $len = count($matches[0]);
    if(is_null($min) && !empty($max) && $len < $max){
      return false;
    }
    if(is_null($max) && !empty($min) && $len > $min){
      return false;
    }
    if ($len < $min || $len > $max) {
      return false;
    }
    return true;
  }
  //    
  public static function isEmail($str)
  {
    if (!$str) {
      return false;
    }
    return preg_match('#[a-z0-9&\-_.]+@[\w\-_]+([\w\-.]+)?\.[\w\-]+#is', $str) ? true : false;
  }
  /**
  *         
  * @access public
  * @param string $rule     
  * @param string $value       
  * @return boolean
  */
  public function regex($rule,$value) {
    $validate = array(
    //    ,    
    'require' => '/\S+/',
    //    
    'email'  => '/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/',
    //url  
    'url'  => '/^http(s?):\/\/(?:[A-za-z0-9-]+\.)+[A-za-z]{2,4}(?:[\/\?#][\/=\?%\-&~`@[\]\':+!\.#\w]*)?$/',
    //    
    'currency' => '/^\d+(\.\d{0,2})?$/',
    //    
    'number' => '/^[-\+]?\d+(\.\d+)?$/',
    //zip  
    'zip'  => '/^\d{6}$/',
    //    
    'integer' => '/^[-\+]?\d+$/',
    //     
    'double' => '/^[-\+]?\d+(\.\d+)?$/',
    //    
    'english' => '/^[A-Za-z]+$/',
    'gt0' => '/^(?!(0[0-9]{0,}$))[0-9]{1,}[.]{0,}[0-9]{0,}$/',
    //    
    'account' => '/^[a-zA-Z][a-zA-Z0-9_]{1,19}$/'
    );
    //              
    if(isset($validate[strtolower($rule)]))
    $rule = $validate[strtolower($rule)];
    return preg_match($rule,$value)===1;
  }
  function CheckPwd($pwd,$min=NULL, $max=NULL)
  {
  if (strlen($pwd)>$max || strlen($pwd) 
 
is_null()変数がNULLであるかどうかを検出します.
PS:ここでは、非常に便利な正規表現ツールを2つ提供します.
JavaScript正規表現オンラインテストツール:http://tools.jb51.net/regex/javascript
正規表現オンライン生成ツール:http://tools.jb51.net/regex/create_reg
PHPに関する詳細について興味のある読者は、「php正規表現用法総括」、「PHP配列(Array)操作技巧大全」、「PHP基本文法入門教程」、「PHP演算と演算子用法総括」、「php対象プロセス設計入門教程」、「PHPネットワークプログラミング技巧総括」、「php文字列(string)用法総括」を参照してください.、「php+mysqlデータベース操作入門チュートリアル」および「php一般データベース操作テクニック要約」
ここで述べたことが皆さんのPHPプログラム設計に役立つことを願っています.