ibibicloud / thinkphp8-validate
基于think-validate=v3.0.5
0.0.1
2025-04-11 01:41 UTC
Requires
- php: >=8.0
- ibibicloud/thinkphp8-container: *
This package is auto-updated.
Last update: 2025-04-11 01:48:06 UTC
README
基于 https://github.com/top-think/think-validate/tree/v3.0.5
安装
composer require ibibicloud/thinkphp8-validate
文档
https://doc.thinkphp.cn/v8_0/validate.html https://doc.thinkphp.cn/@think-validate/default.html
用法
use think\facade\Validate; $validate = Validate::rule([ 'name' => 'require|max:25', 'email' => 'email' ]); $data = [ 'name' => 'thinkphp', 'email' => 'thinkphp#qq.com' ]; if ( !$validate->check($data) ) { var_dump($validate->getError()); }
支持创建验证器进行数据验证
<?php namespace app\index\validate; use think\Validate; class User extends Validate { protected $rule = [ 'name' => 'require|max:25', 'age' => 'number|between:1,120', 'email' => 'email', ]; protected $message = [ 'name.require' => '名称必须', 'name.max' => '名称最多不能超过25个字符', 'age.number' => '年龄必须是数字', 'age.between' => '年龄只能在1-120之间', 'email' => '邮箱格式错误', ]; }
验证器调用代码如下:
$data = [ 'name' => 'thinkphp', 'email' => 'thinkphp@qq.com', ]; $validate = new \app\index\validate\User; if ( !$validate->check($data) ) { var_dump($validate->getError()); }