程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php擴展ZF——Validate擴展

php擴展ZF——Validate擴展

編輯:PHP綜合
之前寫了一片文章關於如何在ZF0.6版本下擴展ZF的。這篇應該說是類似的文章,但環境換成ZF1.0RC1版本了。

     在開始ZF擴展之前,推薦先看看ZF手冊中的一些命令規范(ZF推薦使用),同時希望讀者對ZF有較好的理解。如果沒有,可以先上PHPCHIAN的ZF版本詳細了解,或者到phpeye查找相關資料。

      ZF的validator提供了強大的驗證功能,但在實際的操作中還是過於煩瑣。比如說驗證郵件,是用ZF的代碼如下

<?php 

require_once 'Zend/Validate/EmailAddress.php'; 
$validator = new Zend_Validate_EmailAddress(); 
if ($validator->isValid($email)) { 
    // email appears to be valid 
} else { 
    // email is invalid; print the reasons 
    foreach ($validator->getMessages() as $message) { 
        echo "$message\n"; 
    } 

?> 

    有沒有發現,還是很類似我們不使用ZF的驗證方式。只不過ZF幫我們把郵件驗證的細節封裝好了。那麼我們如何簡化成這樣效果呢?(下面是我擴展後的調用方式)

<?php 
$validate = new Phpbean_Validate(); 
        $validate -> set_breakOnFailure(false); 
        $validate -> add('email',new Zend_Validate_EmailAddress(),'郵件地址不正確!'); 
        $validate -> add('username',new Zend_Validate_StringLength(3,15),'用戶名長度必須在3到15之間!\'%value%\'不滿足條件'); 
        $validate -> add('password',new Zend_Validate_StringLength(6,20),'密碼長度必須在6到20之間!'); 
        $validate -> add('password',new Phpbean_Validate_isEqual($_POST['repassword']),'兩次輸入密碼不匹配'); 
        $authcode = new Phpbean_Img_Code(); 
        $validate -> add('yanxue8_authcode',new Phpbean_Validate_isEqual($authcode->authcode($_POST['yanxue8_authcode_mdcode'],'DECODE')),'驗證碼不匹配!'); 
        if( !$validate -> validator($_POST) ){ 
            error_page('注冊失敗',$validate->getMessageText()); 
        } 
?> 

    用上面這種方式一方面代碼清晰,另一方面也有利同意的出錯處理。那麼如何做到這樣呢?
    關鍵是Phpbean_Validate這個類。
    其實實現起來很簡單,Phpbean_Validate::add()方法是把一條條的驗證規則加入進來。然後調用Phpbean_Validate::validator()來驗證就OK了。
    具體實現步驟如下:
    首先,在zend的同級目錄中增加一個phpbean文件夾,然後在裡面增加一個Validator.php文件。
    然後,在validator.php文件加入Phpbean_Validate這個類的定義。注意(你可以修改成自己的文件名和路徑名,但注意一定要和類的名稱保持一致)。
    這裡,我給出我的Phpbean_Validate類的實現過程,僅供參考。

<? 
class Phpbean_Validate{ 

    protected $_fileds =array(); 

    protected $_message = array(); 

    protected $_breakOnFailure = true; 

    public function set_breakOnFailure($value){ 
        $this->_breakOnFailure = $value; 
    } 

    public function add($key,$validate,$message='',$breakOnFailure=''){ 
        if( empty($breakOnFailure) ) $breakOnFailure = $this->_breakOnFailure;  
        $this->_fileds[] = array($key,$validate,$message,$breakOnFailure); 
        return $this; 
    } 

    public function validator($array = array()){ 
        if(empty($array)) $array = $_POST; 
        if (is_array($this->_fileds)) { 
            foreach ($this->_fileds as $filed){ 
                list($key,$validate,$message,$breakOnFailure) = $filed; 

                if(empty($key)){ 
                    if(!$validate){ 
                        $this->_message[][] = $message; 
                        if($breakOnFailure) break;  
                    } 
                    continue; 
                } 

                if(!empty($message)) $validate->setMessage($message); 
                if( !$validate->isValid($array[$key]) ){ 
                    $this->_message[$key][] = $validate->getMessages(); 
                    if($breakOnFailure) break;  
                } 
            } 
            if(!empty($this->_message))return false; 
            return true; 
        } 
        return true; 
    } 

    public function getMessage(){ 
        return $this->_message; 
    } 
    public function getMessageText(){ 
        $str = ''; 
        foreach ($this->_message as $ms){ 
            foreach ($ms as $m) $str .= $m[0]."\n"; 
        } 
        return $str; 
    } 

?> 


   另外你還可以直接擴展一些驗證規則類。下篇我再詳細說。 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved