当前位置:Gxlcms > PHP教程 > php验证类

php验证类

时间:2021-07-01 10:21:17 帮助过:3人阅读

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

人气教程排行