php 校验密码位数,php – Laravel密码验证规则

如何在验证器中添加密码验证规则?

验证规则:

密码包含以下五个类别中至少三个的字符:

>英文大写字母(A – Z)

>英文小写字母(a – z)

>基数10位数(0 – 9)

>非字母数字(例如:!,$,#或%)

> Unicode字符

如何在验证器规则中添加上述规则?

我的代码在这里

// create the validation rules ------------------------

$rules = array(

'name' => 'required', // just a normal required validation

'email' => 'required|email|unique:ducks', // required and must be unique in the ducks table

'password' => 'required',

'password_confirm' => 'required|same:password' // required and has to match the password field

);

// do the validation ----------------------------------

// validate against the inputs from our form

$validator = Validator::make(Input::all(), $rules);

// check if the validator failed -----------------------

if ($validator->fails()) {

// get the error messages from the validator

$messages = $validator->messages();

// redirect our user back to the form with the errors from the validator

return Redirect::to('home')

->withErrors($validator);

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值