首页 > 开发 > PHP > 正文

php可扩展的验证类实例(可对邮件、手机号、URL等验证)

2024-05-04 23:37:34
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php可扩展的验证类,实例分析了php针对邮件、手机号、URL等常用的验证技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php可扩展的验证类。分享给大家供大家参考。具体分析如下:

这里介绍一个可扩展的php验证类,

类里面可以的各类验证可自行调整实现,现在为基本实现方式。

需要添加规则的话, 直接定义方法,方法名即为规则名称。具体参考使用方法。

 

 
  1. require_once('./Validator.class.php'); 
  2. $data = array( 
  3. 'nickname' => 'heno' , 
  4. 'realname' => 'steven'
  5. 'age' => 25, 
  6. 'mobile' => '1521060426'); 
  7. $validator = new Validator($data); 
  8. $validator->setRule('nickname''required'); 
  9. $validator->setRule('realname', array('length' => array(1,6), 'required')); 
  10. $validator->setRule('age', array('required''digit')); 
  11. $validator->setRule('mobile', array('mobile')); 
  12. $result = $validator->validate(); 
  13. var_dump($result); 
  14. var_dump($validator->getResultInfo()); 

Validator.class.php文件如下:

 

 
  1. <?php 
  2. /** 
  3. * Validator 数据验证类 
  4. * @package library 
  5. * @category library 
  6. * @author Steven 
  7. * @version 1.0 
  8. */ 
  9. /** 
  10. * Validator 数据验证类 
  11. * @package library 
  12. * @category library 
  13. * @author Steven 
  14. * @version 1.0 
  15. */ 
  16. class Validator { 
  17. /** 
  18. * 待校验数据 
  19. * @var array 
  20. */ 
  21. private $_data; 
  22. /** 
  23. * 校验规则 
  24. * @var array 
  25. */ 
  26. private $_ruleList = null
  27. /** 
  28. * 校验结果 
  29. * @var bool 
  30. */ 
  31. private $_result = null
  32. /** 
  33. * 校验数据信息 
  34. * @var array 
  35. */ 
  36. private $_resultInfo = array(); 
  37. /** 
  38. * 构造函数 
  39. * @param array $data 待校验数据 
  40. */ 
  41. public function __construct($data = null
  42. if ($data) { 
  43. $this->_data = $data; 
  44. /** 
  45. * 设置校验规则 
  46. * @param string $var 带校验项key 
  47. * @param mixed $rule 校验规则 
  48. * @return void 
  49. */ 
  50. public function setRule($var, $rule) 
  51. $this->_ruleList[$var] = $rule; 
  52. /** 
  53. * 检验数据 
  54. * @param array $data  
  55. * <code> 
  56. * $data = array('nickname' => 'heno' , 'realname' => 'steven', 'age' => 25); 
  57. * $validator = new Validator($data); 
  58. * $validator->setRule('nickname', 'required'); 
  59. * $validator->setRule('realname', array('lenght' => array(1,4), 'required')); 
  60. * $validator->setRule('age', array('required', 'digit')); 
  61. * $result = $validator->validate(); 
  62. * var_dump($validator->getResultInfo()); 
  63. * </code> 
  64. * @return bool 
  65. */ 
  66. public function validate($data = null
  67. $result = true
  68. /* 如果没有设置校验规则直接返回 true */ 
  69. if ($this->_ruleList === null || !count($this->_ruleList)) { 
  70. return $result; 
  71. /* 已经设置规则,则对规则逐条进行校验 */ 
  72. foreach ($this->_ruleList as $ruleKey => $ruleItem) { 
  73. /* 如果检验规则为单条规则 */ 
  74. if (!is_array($ruleItem)) { 
  75. $ruleItem = trim($ruleItem); 
  76. if (method_exists($this, $ruleItem)) { 
  77. /* 校验数据,保存校验结果 */ 
  78. $tmpResult = $this->$ruleItem($ruleKey); 
  79. if (!$tmpResult) { 
  80. $this->_resultInfo[$ruleKey][$ruleItem] = $tmpResult; 
  81. $result = false
  82. continue
  83. /* 校验规则为多条 */ 
  84. foreach ($ruleItem as $ruleItemKey => $rule) { 
  85. if (!is_array($rule)) { 
  86. $rule = trim($rule); 
  87. if (method_exists($this, $rule)) { 
  88. /* 校验数据,设置结果集 */ 
  89. $tmpResult = $this->$rule($ruleKey); 
  90. if (!$tmpResult) { 
  91. $this->_resultInfo[$ruleKey][$rule] = $tmpResult; 
  92. $result = false
  93. else { 
  94. if (method_exists($this, $ruleItemKey)) { 
  95. /* 校验数据,设置结果集 */ 
  96. $tmpResult = $this->$ruleItemKey($ruleKey, $rule); 
  97. if (!$tmpResult) { 
  98. $this->_resultInfo[$ruleKey][$ruleItemKey] = $tmpResult; 
  99. $result = false
  100. return $result; 
  101. /** 
  102. * 获取校验结果数据 
  103. * @return [type] [description] 
  104. */ 
  105. public function getResultInfo() 
  106. return $this->_resultInfo; 
  107. /** 
  108. * 校验必填参数 
  109. * @param string $varName 校验项 
  110. * @return bool 
  111. */ 
  112. public function required($varName)  
  113. $result = false
  114. if (is_array($this->_data) && isset($this->_data[$varName])) { 
  115. $result = true
  116. return $result; 
  117. /** 
  118. * 校验参数长度 
  119.  
  120. * @param string $varName 校验项 
  121. * @param array $lengthData array($minLen, $maxLen) 
  122. * @return bool 
  123. */ 
  124. public function length($varName, $lengthData) 
  125. $result = true
  126. /* 如果该项没有设置,默认为校验通过 */ 
  127. if ($this->required($varName)) { 
  128. $varLen = mb_strlen($this->_data[$varName]); 
  129. $minLen = $lengthData[0]; 
  130. $maxLen = $lengthData[1]; 
  131. if ($varLen < $minLen || $varLen > $maxLen) { 
  132. $result = true
  133. return $result; 
  134. /** 
  135. * 校验邮件 
  136. * @param string $varName 校验项 
  137. * @return bool 
  138. */ 
  139. public function email($varName) 
  140. $result = true
  141. /* 如果该项没有设置,默认为校验通过 */ 
  142. if ($this->required($varName)) { 
  143. $email = trim($this->_data[$varName]); 
  144. if (preg_match('/^[-/w]+?@[-/w.]+?$/', $email)) { 
  145. $result = false
  146. return $result; 
  147. /** 
  148. * 校验手机 
  149. * @param string $varName 校验项 
  150. * @return bool 
  151. */ 
  152. public function mobile($varName) 
  153. $result = true
  154. /* 如果该项没有设置,默认为校验通过 */ 
  155. if ($this->required($varName)) { 
  156. $mobile = trim($this->_data[$varName]); 
  157. if (!preg_match('/^1[3458]/d{10}$/', $mobile)) { 
  158. $result = false
  159. return $result; 
  160. /** 
  161. * 校验参数为数字 
  162. * @param string $varName 校验项 
  163. * @return bool 
  164. */ 
  165. public function digit($varName) 
  166. $result = false
  167. if ($this->required($varName) && is_numeric($this->_data[$varName])) { 
  168. $result = true
  169. return $result; 
  170. /** 
  171. * 校验参数为身份证 
  172. * @param string $varName 校验项 
  173. * @return bool 
  174. */ 
  175. public function ID($ID) 
  176. /** 
  177. * 校验参数为URL 
  178. * @param string $varName 校验项 
  179. * @return bool 
  180. */ 
  181. public function url($url) 
  182. $result = true
  183. /* 如果该项没有设置,默认为校验通过 */ 
  184. if ($this->required($varName)) { 
  185. $url = trim($this->_data[$varName]); 
  186. if(!preg_match('/^(http[s]?::)?/w+?(/./w+?)$/', $url)) { 
  187. $result = false
  188. return $result; 
  189. ?> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表