작업 중 사용 빈도가 비교적 높은 일반 검증기

2532 단어 작업
우선 메일박스의 검증:
    
function is_email($email){

      return preg_match("/^[\w\-\.]+@[\w\-]+(\.\w+)+$/",$email)      

}

 
그 다음은 국내 전화번호 검증:
 
  
function is_tel($tel){

      return preg_match("/^(\d{3,4}-)?(\d{7,8})(-(\d{3,}))?$/",$tel);

}

 
휴대폰 번호 확인:
 
  
function is_mobile($mobile){

      $mobile = ltrim($mobile,0);

      $pre3 = substr($mobile,0,3);

      if($pre3==852){

             return preg_match("/^852\d{8,9}$/",$mobile);

      }

      else{

             if (strlen($mobile) != 11){

                    retrun false;

             }

             else{

                    return preg_match("/^1[3458]\d{9}$/",$mobile);

             }

      }

}    

좋은 웹페이지 즐겨찾기