码迷,mamicode.com
首页 > 其他好文 > 详细

TP自动验证密码范围

时间:2020-04-26 11:01:23      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:手机   ber   tom   post   验证码   nbsp   erro   col   between   

验证规则

$validate = new Validate(
            [
            ‘user_name‘ => ‘require|mobile‘,
            ‘password‘ => ‘require|max:16|min:8‘,
            ‘verify_code‘ => ‘require‘,
            ‘type‘ => ‘number|between:0,1‘,
            ],
            [‘phone.require‘ => ‘手机号必填‘,
            ‘phone.mobile‘ => ‘手机号格式错误‘,
            ‘password.require‘ => ‘密码不能为空‘,
            ‘password.max‘ => ‘密码设置8-16之间‘,
            ‘password.min‘ => ‘密码设置8-16之间‘,
            ‘verify_code.require‘ => ‘验证码不能为空‘,
            ‘type.between‘ => ‘在0和1之间‘,
            ]
        );

验证方法

        if (!$validate->check($request->post())) {
            $this->apiResult(CustomError::OPERATION_SUCCSESS, [], $validate->getError());
        }

 

TP自动验证密码范围

标签:手机   ber   tom   post   验证码   nbsp   erro   col   between   

原文地址:https://www.cnblogs.com/camg/p/12777540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!