Home  >  Article  >  Backend Development  >  Some simple php tool classes

Some simple php tool classes

WBOY
WBOYOriginal
2016-07-25 08:48:161092browse
Some commonly used tools for daily work summary adopt simple implementation methods, with relatively single functions and no complex dependencies.

托管地址:http://git.oschina.net/caoyong2619/php-utils.git
  1. /**
  2. * 验证器
  3. * @author 曹勇
  4. * @example
  5. * $data = array('username' => 'caoyong','password' => '');
  6. * $rules = array('username' => 'require','password' => 'require');
  7. * $validator = new Validator($data,$rules);
  8. * $is_pass = $validator->passed();
  9. * $is_fail = $validator->failed();
  10. * $message = $validator->messages();;
  11. */
  12. class Validator
  13. {
  14. /**
  15. * Data to be verified
  16. * @var array
  17. */
  18. protected $data;
  19. /**
  20. * Validation rules
  21. * @var array
  22. */
  23. protected $rule;
  24. /**
  25. * Error message
  26. * @var array
  27. */
  28. protected $messages;
  29. /**
  30. * Custom error message
  31. * @var array
  32. */
  33. protected $custom_messages;
  34. /**
  35. *Extension rules
  36. * @var array
  37. */
  38. protected static $extensions = array();
  39. public function __construct(array $data,array $rule,array $messages = array())
  40. {
  41. $this->setData($data);
  42. $this->setRule($rule);
  43. $this->setMessages($messages);
  44. }
  45. public function setData(array $data)
  46. {
  47. $this->data = $data;
  48. }
  49. public function setRule(array $rule)
  50. {
  51. $this->rule = $rule;
  52. }
  53. public function setMessages(array $messages)
  54. {
  55. $this->custom_messages = $messages;
  56. }
  57. protected function validate($attr,$rule)
  58. {
  59. if (is_array($rule))
  60. {
  61. foreach ($rule as $v)
  62. {
  63. if(false === $this->validate($attr, $v))
  64. break;
  65. }
  66. }
  67. else
  68. {
  69. list($rule,$args) = $this->parseRule($rule);
  70. $method = 'validate'.$rule;
  71. $args = array_merge(array($attr,$this->getValue($attr)),$args);
  72. $result = call_user_func_array(array($this,$method), $args);
  73. if (false === $result)
  74. {
  75. $rule = lcfirst($rule);
  76. if (isset($this->custom_messages[$attr]))
  77. {
  78. if (is_array($this->custom_messages[$attr]) && isset($this->custom_messages[$attr][$rule]))
  79. {
  80. $message = $this->custom_messages[$attr][$rule];
  81. }
  82. else
  83. if (is_string($this->custom_messages[$attr]))
  84. {
  85. $message = $this->custom_messages[$attr];
  86. }
  87. else
  88. {
  89. $message = $attr.' return failed in rule '.$rule;
  90. }
  91. }
  92. else
  93. $message = $attr.' return failed in rule '.$rule;
  94. $this->messages[$attr] = $message;
  95. }
  96. return $result;
  97. }
  98. }
  99. public function passed()
  100. {
  101. foreach ($this->rule as $attr => $rule)
  102. {
  103. $this->validate($attr, $rule);
  104. }
  105. return 0 === count($this->messages);
  106. }
  107. public function failed()
  108. {
  109. return !$this->passed();
  110. }
  111. public function messages($key = false)
  112. {
  113. if ($key && isset($this->messages[$key]))
  114. return $this->messages[$key];
  115. return $this->messages;
  116. }
  117. protected function parseRule($rule)
  118. {
  119. if (false !== strpos($rule,'|'))
  120. {
  121. list($rulename,$args) = explode('|', $rule);
  122. $args = explode(':', $args);
  123. }
  124. else
  125. {
  126. $rulename = $rule;
  127. $args = array();
  128. }
  129. return array(ucfirst($rulename),$args);
  130. }
  131. protected function getValue($attr)
  132. {
  133. if(!is_null($value = $this->data[$attr]))
  134. return $value;
  135. }
  136. /**
  137. * Extended validation rules
  138. * @param string $name
  139. * @param Closure $rule
  140. */
  141. public static function addExtension($name,Closure $rule)
  142. {
  143. static::$extensions[$name] = $rule;
  144. }
  145. /**
  146. * Add expansion rules in batches
  147. * @param $rules array
  148. */
  149. public static function addExtensions(array $rules)
  150. {
  151. foreach ($rules as $k => $v)
  152. {
  153. static::addExtenstion($k, $v);
  154. }
  155. }
  156. public function __call($method,$args)
  157. {
  158. $method = lcfirst(substr($method, 8));
  159. $args = array_merge(array($this),$args);
  160. if (isset(static::$extensions[$method]))
  161. {
  162. return call_user_func_array(static::$extensions[$method], $args);
  163. }
  164. throw new Exception('rule '.$method.' dose not exits');
  165. }
  166. protected function validateRequired($attr,$value)
  167. {
  168. return !empty($value);
  169. }
  170. protected function validateLength($attr,$value,$len)
  171. {
  172. return $len == $min;
  173. }
  174. protected function validateMin($attr,$value,$len)
  175. {
  176. return strlen($value) > $len;
  177. }
  178. protected function validateMax($attr,$value,$len)
  179. {
  180. return strlen($value) < $len;
  181. }
  182. protected function ValidateBetween($attr,$value,$min,$max)
  183. {
  184. return $this->validateMin($attr, $value, $min) && $this->validateMax($attr, $value, $max);
  185. }
  186. protected function validateEmail($attr,$value)
  187. {
  188. $regex = '/[w!#$%&'*+/=?^_`{|}~-]+(?:.[w!#$%&'*+/=?^_`{|}~-]+)*@(?:[w](?:[w-]*[w])?.)+[w](?:[w-]*[w])?/i';
  189. return (bool)preg_match($regex, $value);
  190. }
  191. protected function validateNumber($attr,$value)
  192. {
  193. return is_numeric($value);
  194. }
  195. protected function validateIn($attr,$value,$in_data)
  196. {
  197. $in_data = explode(',', $in_data);
  198. return in_array($value, $in_data);
  199. }
  200. protected function validateNotin($attr,$value,$in_data)
  201. {
  202. return !$this->validateIn($attr, $value, $in_data);
  203. }
  204. protected function validateEq($attr,$value,$eq)
  205. {
  206. return $value == $eq;
  207. }
  208. protected function validateConfirm($attr,$value,$confirm)
  209. {
  210. return $this->validateEq($attr, $value, $this->getValue($confirm));
  211. }
  212. protected function validateUrl($attr,$value)
  213. {
  214. $regex = '/[a-zA-z]+://[^s]*/i';
  215. return (bool)preg_match($regex, $value);
  216. }
  217. protected function validateMobile($attr,$value)
  218. {
  219. return preg_match('/1(3|4|5|8})d{9}/',$value);
  220. }
  221. protected function validateQQ($attr,$value)
  222. {
  223. return preg_match('/d{5,}/', $value);
  224. }
  225. }
复制代码


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn