Sellersns.php 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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 Sellersns extends Validate
  16. {
  17. protected $rule = [
  18. 'content'=>'require|length:1,140',
  19. 'goods_url'=>'url'
  20. ];
  21. protected $message = [
  22. 'content.require'=>'内容不能为空且不能超过140个字',
  23. 'content.length'=>'内容不能为空且不能超过140个字',
  24. 'goods_url.url'=>'url格式不正确,请输入这正确的格式!'
  25. ];
  26. protected $scene = [
  27. 'store_sns_save' => ['content', 'goods_url'],
  28. ];
  29. }