Memberconnect.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  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 Memberconnect extends Validate
  17. {
  18. protected $rule = [
  19. 'new_password'=>'require|length:6,20',
  20. 'confirm_password'=>'require|confirm:new_password',
  21. ];
  22. protected $message = [
  23. 'new_password.require'=>'新密码为必填|密码长度必须为6-20之间',
  24. 'new_password.length'=>'新密码为必填|密码长度必须为6-20之间',
  25. 'confirm_password.require'=>'新密码与确认密码不相同,请从重新输入',
  26. 'confirm_password.confirm'=>'新密码与确认密码不相同,请从重新输入',
  27. ];
  28. protected $scene = [
  29. 'qqunbind' => ['new_password', 'confirm_password'],
  30. 'sinaunbind' => ['new_password', 'confirm_password'],
  31. 'weixinunbind' => ['new_password', 'confirm_password'],
  32. ];
  33. }