一個可擴展的php驗證類, 類裡面可以的各類驗證可自行調整實現,現在為基本實現方式。 需要新增規則的話, 直接定義方法,方法名稱即為規則名稱。具體參考使用方法。
- require_once('./Validator.class.php');
- $data = array(
- 'nickname' => 'heno' ,
- 'realname
- 'nickname' => 'heno' ,
- 'realname ' => 'steven',
- 'age' => 25,
- 'mobile' => '1521060426');
-
- $validator = new Validator($data);
-
- $validator->setRule('nickname', 'required');
- $validator->setRule('realname', array('length' => array(1,6), 'required'));
- $validator->setRule('age', array('required', 'digit'));
- $validator->setRule('mobile', array('mobile'));
- $ result = $validator->validate();
-
var_dump($result); var_dump($validator->getResultInfo());
複製程式碼複製程式碼複製程式碼複製程式碼複製程式碼複製程式碼複製程式碼複製程式碼複製程式碼
- /**
- * Validator 資料驗證類別
- * @package library
- * @category library
- * @author Steven
- * @version 1.0
- */
-
- /**
- * Validator 資料驗證類別
- * @package library
- * @category library
- * @author Steven
- * @version 1.0
- */
- class Validator {
-
- /**
- * 待校驗資料
- * @var array
- */
- private $_data;
-
- /**
- * 校驗規則
- * @var array
- */
- private $_ruleList = null;
- * 校驗結果
- * @var bool
- */
- private $_ruleList = null;
- * 校驗資料資訊
- * @var array
- */
- private $_result = null;
-
- /**
- * 建構子
- * @param array $data 待校驗資料
- */
- private $_resultInfo = array();
-
- /**
- * 設定校驗規則
- * @param string $var 帶校驗項key
- * @param mixed $rule 校驗規則
- * @return void
- */
- public function __construct($data = null)
- {
- if ($data) {
- $this->_data = $data;
- }
- }
- }
-
- /**
- * 檢定資料
- * @param array $data
- *
<li> * $data = array('nickname' => 'heno' , 'realname' => 'steven ', '年齡' => 25);</li>
<li> * $validator = new Validator($data);</li>
<li> * $validator->setRule('暱稱', '必填');</li>
<li> * $ validator->setRule ('真名', array('長度' => array(1,4), '必填'));</li>
<li> * $validator->setRule('年齡', array('必填) ', '數字') );</li>
<li> * $result = $validator->validate();</li>
<li> * var_dump($validator->getResultInfo());</li>
<li> * </li>
- * @return bool
- */
- public function setRule($var, $rule)
- {
- $this->_ruleList[$var] = $rule;
- }
-
- /**
- * 取得校驗結果資料
- * @return [type] [description]
- */
- public function validate($data = null)
- {
- $result = true;
-
- /* 如果沒有設定校驗規則直接回傳true */
- if ($this->_ruleList === null || !count($this->_ruleList)) {
- return $result;
- }
-
- /* 已設定規則,則對規則逐條進行校驗*/
- foreach ($this->_ruleList as $ruleKey => $ruleItem) {
-
- /* 如果檢定規則為單一規則*/
- if (!is_array($ruleItem)) {
- $ruleItem = trim($ruleItem);
- if (method_exists($this, $ruleItem)) {
-
- /*校驗數據,儲存校驗結果*/
- $tmpResult = $this->$ruleItem($ruleKey);
- if (!$tmpResult) {
- $this->_resultInfo[$ruleKey][ $ruleItem] = $tmpResult;
- $result = false;
- }
- }
- continue;
- }
-
- /* 校驗規則為多條*/ foreach ($ruleItem as $ruleItemKey => $rule) {
-
- if (!is_array($rule)) {
- $rule = trim($rule);
- if (method_exists($ this, $rule)) {
-
- /* 校驗數據,設定結果集*/
- $tmpResult = $this->$rule($ruleKey);
- if (!$tmpResult) {
- $this->_resultInfo[$ruleKey][$rule] = $tmpResult;
- $result = false;
- }
- }
- } else {
- if (method $this, $ruleItemKey)) {
-
- /* 校驗數據,設定結果集*/
- $tmpResult = $this->$ruleItemKey($ruleKey, $rule);
- if ( !$tmpResult) {
- $this->_resultInfo[$ruleKey][$ruleItemKey] = $tmpResult;
- $result = false;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
- } 🎜> }
-
- return $result;
- }
-
- /**
- * 校驗必填參數
- * @param string $varName 校驗項
- * @return bool
- */
- public function getResultInfo()
- {
- return $this-this-this-this-this >_resultInfo;
- }
-
- /**
- * 校驗參數長度
- *
- * @param string $varName 校驗項目
- * @param array $lengthData array($minLen, $maxLen)
- * @return bool
- */ public function required($varName) { $result = false; if (is_array(> $result = false; if (is_array(> $result = false; if (is_array(); $this->_data) && isset($this->_data[$varName])) { $result = true; } return $result; } /***/ public function length($varName, $lengthData) { $result = true; /* 如果該項目沒有設置,預設為校驗通過*/ if ($this->required($varName)) { $varLen = mb_strlen($this->_data[$varName]); $minLen = $lengthData [0]; $maxLen = $lengthData[1]; if ($varLen $maxLen) { $result = true; } } return $result; }
-
-
- /**
- * 校驗郵件
- * @param string $varName 校驗項
- * @return bool
- */
- public function email($varName)
- {
- $result = true;
-
- /* 如果該項沒有設置,預設為校驗通過*/
- if ($this->required($varName)) {
- $email = trim($this->_data[$varName]);
- if ( preg_match('/^[-w]+?@[-w.]+?$/', $email)) {
- $result = false;
- }
- }
- return $result ;
- }
-
- /**
- * 校驗手機
- * @param string $varName 校驗項目
- * @return bool
- */
- public function mobile($varName)
- {
- $result = true;
-
- {
- $result = true;
-
- /* 如果* 如果* 如果*該項沒有設置,預設為校驗通過*/
- if ($this->required($varName)) {
- $mobile = trim($this->_data[$varName]);
- if (!preg_match('/^1[3458]d{10}$/', $mobile)) {
- $result = false;
- }
- }
-
- return $result ;
- }
-
- /**
- * 校驗參數為數字
- * @param string $varName 校驗項
- * @return bool
- */
- public function digit($varName)
- {
- $result = false;
- if ($this-> required($varName) && is_numeric($this->_data[$varName])) {
- $result = true;
- }
- return $result;
- }
-
-
- /**
- * 校驗參數為身分證
- * @param string $varName 校驗項
- * @return bool
- */
- public function ID($ID)
- {
-
- }
-
-
- /**
- * 校驗參數為URL
- * @param string $varName 校驗項
- * @return bool
- */*/ public function url($url)
- {
- $result = true;
-
- /* 如果該項沒有設置,預設為校驗通過*/
- if ($this-> required($varName)) {
- $url = trim($this->_data[$varName]);
- if(!preg_match('/^(http[s]?::)?w+?( .w+?)$/', $url)) {
- $result = false;
- }
- }
- return $result;
- }
- }
?>
複製程式碼 |