Wechat.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 验证器
  15. */
  16. class Wechat extends Validate
  17. {
  18. protected $rule = [
  19. 'name'=>'require',
  20. 'sort'=>'number',
  21. 'type'=>'require',
  22. 'value'=>'checkValue:1'
  23. ];
  24. protected $message = [
  25. 'name.require'=>'菜单名称不能为空',
  26. 'sort.number'=>'排序只能为数字',
  27. 'type.require'=>'类型不能为空',
  28. 'value.checkValue'=>'URL地址错误'
  29. ];
  30. protected $scene = [
  31. 'menu_add' => ['name', 'sort', 'type', 'value'],
  32. 'menu_edit' => ['name', 'sort', 'type', 'value'],
  33. ];
  34. protected function checkValue($value){
  35. if(input('post.menu_type') == 'view'){
  36. if (empty($value)){
  37. return 'URL地址格式不能为空';
  38. }
  39. if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$value)) {
  40. return "URL地址格式不正确";
  41. }
  42. }
  43. return true;
  44. }
  45. }