Wechat.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 验证器
  14. */
  15. class Wechat extends Validate
  16. {
  17. protected $rule = [
  18. 'name'=>'require',
  19. 'sort'=>'number',
  20. 'type'=>'require',
  21. 'value'=>'checkValue:1'
  22. ];
  23. protected $message = [
  24. 'name.require'=>'菜单名称不能为空',
  25. 'sort.number'=>'排序只能为数字',
  26. 'type.require'=>'类型不能为空',
  27. 'value.checkValue'=>'URL地址错误'
  28. ];
  29. protected $scene = [
  30. 'menu_add' => ['name', 'sort', 'type', 'value'],
  31. 'menu_edit' => ['name', 'sort', 'type', 'value'],
  32. ];
  33. protected function checkValue($value){
  34. if(input('post.menu_type') == 'view'){
  35. if (empty($value)){
  36. return 'URL地址格式不能为空';
  37. }
  38. if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$value)) {
  39. return "URL地址格式不正确";
  40. }
  41. }
  42. return true;
  43. }
  44. }