RouteValidate.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 小夏 < 449134904@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\validate;
  12. use think\Validate;
  13. class RouteValidate extends Validate
  14. {
  15. protected $rule = [
  16. 'url' => 'require|checkUrl',
  17. 'full_url' => 'require|checkFullUrl',
  18. ];
  19. protected $message = [
  20. 'url.require' => '显示网址不能为空',
  21. 'full_url.require' => '原始网址不能为空',
  22. ];
  23. // 自定义验证规则
  24. protected function checkUrl($value, $rule, $data)
  25. {
  26. $value = htmlspecialchars_decode($value);
  27. if (preg_match("/[()'\";]/", $value)) {
  28. return "显示网址格式不正确!";
  29. }
  30. return true;
  31. }
  32. // 自定义验证规则
  33. protected function checkFullUrl($value, $rule, $data)
  34. {
  35. $value = htmlspecialchars_decode($value);
  36. if (preg_match("/[()'\";]/", $value)) {
  37. return "原始网址格式不正确!";
  38. }
  39. return true;
  40. }
  41. }