Validate.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?php
  2. namespace support;
  3. class Validate extends \think\Validate
  4. {
  5. protected $typeMsg = [
  6. 'require' => ':attribute 必填',
  7. 'must' => ':attribute 必须',
  8. 'number' => ':attribute 必须是数字',
  9. 'integer' => ':attribute 必须是整数',
  10. 'float' => ':attribute 必须是小数',
  11. 'boolean' => ':attribute 必须是布尔型',
  12. 'email' => ':attribute 必须是邮箱格式',
  13. 'mobile' => ':attribute 必须是手机号码格式',
  14. 'array' => ':attribute 必须是数组',
  15. 'accepted' => ':attribute 必须同意',
  16. 'date' => ':attribute 必须是时间格式',
  17. 'file' => ':attribute 必须是文件',
  18. 'image' => ':attribute 必须是图片',
  19. 'alpha' => ':attribute 必须是字母',
  20. 'alphaNum' => ':attribute 必须是字母和数字组合',
  21. 'alphaDash' => ':attribute 必须是字母和下划线组合',
  22. 'activeUrl' => ':attribute 必须是域或IP地址',
  23. 'chs' => ':attribute 必须是汉字',
  24. 'chsAlpha' => ':attribute 格式错误',
  25. 'chsAlphaNum' => ':attribute 必须是汉字,字母,下划线',
  26. 'chsDash' => ':attribute 必须是汉字,数字,字母,下划线',
  27. 'url' => ':attribute 必须是链接格式',
  28. 'ip' => ':attribute 必须是IP格式',
  29. 'dateFormat' => ':attribute 必须是时间格式 :rule',
  30. 'in' => ':attribute 必须在 :rule 之中',
  31. 'notIn' => ':attribute 不在 :rule 之中',
  32. 'between' => ':attribute 必须在 :1 - :2 之间',
  33. 'notBetween' => ':attribute 不在 :1 - :2 之间',
  34. 'length' => ':attribute 长度必须小于 :rule',
  35. 'max' => ':attribute 长度必须小于 :rule ',
  36. 'min' => ':attribute 必须大于 :rule',
  37. 'after' => ':attribute 不能小于 :rule',
  38. 'before' => ':attribute 不能超过 :rule',
  39. 'expire' => ':attribute 不在有效期内 :rule',
  40. 'allowIp' => '当前IP不允许访问',
  41. 'denyIp' => '访问IP被拒绝',
  42. 'confirm' => ':attribute out of accord with :2',
  43. 'different' => ':attribute cannot be same with :2',
  44. 'egt' => ':attribute 必须大于或等于:rule',
  45. 'gt' => ':attribute 必须大于 :rule',
  46. 'elt' => ':attribute 必须小于或等于 :rule',
  47. 'lt' => ':attribute 必须小于 :rule',
  48. 'eq' => ':attribute 必须等于 :rule',
  49. 'unique' => ':attribute 已存在',
  50. 'regex' => ':attribute 不符合规则',
  51. 'method' => '无效的请求方法',
  52. 'token' => '无效的令牌',
  53. 'fileSize' => '文件大小不匹配',
  54. 'fileExt' => '文件类型不允许上传',
  55. 'fileMime' => '文件类型不允许上传',
  56. ];
  57. }