Validate 有很大概率会被继承所以这里列出protected方法和属性
**protected属性:**
$type = [] -- 自定义验证类型
$alias = [ '>' => 'gt', '>=' => 'egt', '<' => 'lt', '<=' => 'elt', '=' => 'eq', 'same' => 'eq',] -- 验证类型别名
$rule = [] -- 当前验证规则
$message = [] -- 验证提示信息
$field = [] -- 验证字段描述
$currentScene="" -- 当前验证场景
$scene = [] -- 验证场景定义
$error = [] 或 $error ="" -- 验证失败错误信息
$batch = false -- 是否批量验证
$failException = false -- 验证失败是否抛出异常
$only = [] -- 场景需要验证的规则
$remove = [] -- 场景需要移除的验证规则
$append = [] -- 场景需要追加的验证规则
$regex = [] -- 验证正则定义
$db -- Db对象
$lang -- 语言对象
$request -- Request请求对象
$maker = [] --
$typeMsg -- 默认规则提示
```
$typeMsg = [
'require' => ':attribute require',
'must' => ':attribute must',
'number' => ':attribute must be numeric',
'integer' => ':attribute must be integer',
'float' => ':attribute must be float',
'boolean' => ':attribute must be bool',
'email' => ':attribute not a valid email address',
'mobile' => ':attribute not a valid mobile',
'array' => ':attribute must be a array',
'accepted' => ':attribute must be yes,on or 1',
'date' => ':attribute not a valid datetime',
'file' => ':attribute not a valid file',
'image' => ':attribute not a valid image',
'alpha' => ':attribute must be alpha',
'alphaNum' => ':attribute must be alpha-numeric',
'alphaDash' => ':attribute must be alpha-numeric, dash, underscore',
'activeUrl' => ':attribute not a valid domain or ip',
'chs' => ':attribute must be chinese',
'chsAlpha' => ':attribute must be chinese or alpha',
'chsAlphaNum' => ':attribute must be chinese,alpha-numeric',
'chsDash' => ':attribute must be chinese,alpha-numeric,underscore, dash',
'url' => ':attribute not a valid url',
'ip' => ':attribute not a valid ip',
'dateFormat' => ':attribute must be dateFormat of :rule',
'in' => ':attribute must be in :rule',
'notIn' => ':attribute be notin :rule',
'between' => ':attribute must between :1 - :2',
'notBetween' => ':attribute not between :1 - :2',
'length' => 'size of :attribute must be :rule',
'max' => 'max size of :attribute must be :rule',
'min' => 'min size of :attribute must be :rule',
'after' => ':attribute cannot be less than :rule',
'before' => ':attribute cannot exceed :rule',
'expire' => ':attribute not within :rule',
'allowIp' => 'access IP is not allowed',
'denyIp' => 'access IP denied',
'confirm' => ':attribute out of accord with :2',
'different' => ':attribute cannot be same with :2',
'egt' => ':attribute must greater than or equal :rule',
'gt' => ':attribute must greater than :rule',
'elt' => ':attribute must less than or equal :rule',
'lt' => ':attribute must less than :rule',
'eq' => ':attribute must equal :rule',
'unique' => ':attribute has exists',
'regex' => ':attribute not conform to the rules',
'method' => 'invalid Request method',
'token' => 'invalid token',
'fileSize' => 'filesize not match',
'fileExt' => 'extensions to upload is not allowed',
'fileMime' => 'mimetype to upload is not allowed',
];
```
$defaultRegex -- 内置正则验证规则
```
$defaultRegex = [
'alpha' => '/^[A-Za-z]+$/',
'alphaNum' => '/^[A-Za-z0-9]+$/',
'alphaDash' => '/^[A-Za-z0-9\-\_]+$/',
'chs' => '/^[\x{4e00}-\x{9fa5}]+$/u',
'chsAlpha' => '/^[\x{4e00}-\x{9fa5}a-zA-Z]+$/u',
'chsAlphaNum' => '/^[\x{4e00}-\x{9fa5}a-zA-Z0-9]+$/u',
'chsDash' => '/^[\x{4e00}-\x{9fa5}a-zA-Z0-9\_\-]+$/u',
'mobile' => '/^1[3-9]\d{9}$/',
'idCard' => '/(^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$)|(^[1-9]\d{5}\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}$)/',
'zip' => '/\d{6}/',
];
```
$filter -- Filter_var 规则
```
$filter = [
'email' => FILTER_VALIDATE_EMAIL,
'ip' => [FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_IPV6],
'integer' => FILTER_VALIDATE_INT,
'url' => FILTER_VALIDATE_URL,
'macAddr' => FILTER_VALIDATE_MAC,
'float' => FILTER_VALIDATE_FLOAT,
];
```
**public方法:**
static maker(Closure $maker):void -- 设置服务注入
setLang(Lang $lang):void -- 设置Lang对象
setDb(Db $db):void -- 设置Db对象
setRequest(Request $request):void -- 设置Request对象
rule($name, $rule = ''):Validate -- 添加字段验证规则
extend(string $type, callable $callback = null, string $message = null):Validate -- 添加字段验证规则
setTypeMsg($type, string $msg = null): void -- 设置验证规则的默认提示信息
message(array $message):Validate -- 设置提示信息
scene(string $name):Validate -- 设置验证场景
hasScene(string $name): bool -- 判断是否存在某个验证场景
batch(bool $batch = true):Validate -- 设置批量验证
failException(bool $fail = true):Validate -- 设置验证失败后是否抛出异常
only(array $fields):Validate -- 指定需要验证的字段列表
remove($field, $rule = null):Validate -- 移除某个字段的验证规则
append($field, $rule = null):Validate -- 追加某个字段的验证规则
check(array $data, array $rules = []): bool -- 数据自动验证
checkRule($value, $rules): bool -- 根据验证规则验证数据
confirm($value, $rule, array $data = [], string $field = ''): bool -- 验证是否和某个字段的值一致
different($value, $rule, array $data = []): bool -- 验证是否和某个字段的值是否不同
egt($value, $rule, array $data = []): bool -- 验证是否大于等于某个值
gt($value, $rule, array $data = []): bool -- 验证是否大于某个值
elt($value, $rule, array $data = []): bool -- 验证是否小于等于某个值
lt($value, $rule, array $data = []): bool -- 验证是否小于某个值
eq($value, $rule): bool -- 验证是否等于某个值
must($value, $rule = null): bool -- 必须验证
is($value, string $rule, array $data = []): bool -- 验证字段值是否为有效格式
token($value, string $rule, array $data): bool -- 验证表单令牌
activeUrl(string $value, string $rule = 'MX'): bool -- 验证是否为合格的域名或者IP 支持A,MX,NS,SOA,PTR,CNAME,AAAA,A6, SRV,NAPTR,TXT 或者 ANY类型
ip($value, string $rule = 'ipv4'): bool -- 验证是否有效IP
fileExt($file, $rule): bool -- 验证上传文件后缀
fileMime($file, $rule): bool -- 验证上传文件类型
fileSize($file, $rule): bool -- 验证上传文件大小
image($file, $rule): bool -- 验证图片的宽高及类型
dateFormat($value, $rule): bool -- 验证时间和日期是否符合指定格式
unique($value, $rule, array $data = [], string $field = ''): bool -- 验证是否唯一
filter($value, $rule): bool -- 使用filter_var方式验证
requireIf($value, $rule, array $data = []): bool -- 验证某个字段等于某个值的时候必须
requireCallback($value, $rule, array $data = []): bool -- 通过回调方法验证某个字段是否必须
requireWith($value, $rule, array $data = []): bool -- 验证某个字段有值的情况下必须
requireWithout($value, $rule, array $data = []): bool -- 验证某个字段没有值的情况下必须
in($value, $rule): bool -- 验证是否在范围内
notIn($value, $rule): bool -- 验证是否不在某个范围
between($value, $rule): bool -- between验证数据
notBetween($value, $rule): bool -- 使用notbetween验证数据
length($value, $rule): bool -- 验证数据长度
max($value, $rule): bool -- 验证数据最大长度
min($value, $rule): bool -- 验证数据最小长度
after($value, $rule, array $data = []): bool -- 验证日期
before($value, $rule, array $data = []): bool -- 验证日期
afterWith($value, $rule, array $data = []): bool -- 验证日期
beforeWith($value, $rule, array $data = []): booll -- 验证日期
expire($value, $rule): bool -- 验证有效期
allowIp($value, $rule): bool -- 验证IP许可
denyIp($value, $rule): bool -- 验证IP禁用
regex($value, $rule): bool -- 使用正则验证数据
getError():array|string -- 获取错误信息
__call($method, $args):bool -- 动态方法 直接调用is方法进行验证
**protected方法:**
checkItem(string $field, $value, $rules, $data, string $title = '', array $msg = []):mixed -- 验证单个字段规则
getValidateType($key, $rule): array -- 获取当前验证类型及规则
getImageType($image):string|false -- 判断图像类型
checkExt(File $file, $ext): bool -- 检测上传文件后缀
checkSize(File $file, $size): bool -- 检测上传文件大小
checkMime(File $file, $mime): bool -- 检测上传文件类型
getDataValue(array $data, $key) -- 获取数据值
getRuleMsg(string $attribute, string $title, string $type, $rule):string|array -- 获取验证规则的错误提示信息
parseErrorMsg(string $msg, $rule, string $title):string -- 获取验证规则的错误提示信息
errorMsgIsArray(array $msg, $rule, string $title):array -- 错误信息数组处理
getScene(string $scene): void -- 获取数据验证的场景
- 空白目录
- php语法结构
- 安装与更新
- 开启调试模式及代码跟踪器
- 架构
- 源码分析
- 应用初始化
- 请求流程
- 中间件源码分析
- 请求处理源码分析
- Request源码分析
- 模板编译流程
- 路由与请求流程
- 容器
- 获取目录位置
- 入口文件
- 多应用模式及URL访问
- 依赖注入与容器
- 容器属性及方法
- Container
- App
- facade
- 中间件(middleware)
- 系统服务
- extend 扩展类库
- 笔记
- 配置
- env配置定义及获取
- 配置文件的配置获取
- 单应用模式-(配置)文件目录结构(默认)
- 多应用模式(配置)文件目录结构(配置文件)
- 配置文件
- 应用配置:app.php
- 缓存配置: cache.php
- 数据库配置:database.php
- 路由和URL配置:route.php
- Cookie配置:cookie.php
- Session配置:session.php
- 命令行配置:console.php
- 多语言配置:lang.php
- 日志配置:log.php
- 页面Trace配置:trace.php
- 磁盘配置: filesystem.php
- 中间件配置:middleware.php
- 视图配置:view.php
- 改成用yaconf配置
- 事件
- 例子:省略事件类的demo
- 例子2:完整事件类
- 例子3:事件订阅,监听多个事件
- 解析
- 路由
- 路由定义
- 路由地址
- 变量规则
- MISS路由
- URL生成
- 闭包支持
- 路由参数
- 路由中间件
- 路由分组
- 资源路由
- 注解路由
- 路由绑定
- 域名路由
- 路由缓存
- 跨域路由
- 控制器
- 控制器定义
- 空控制器、空操作
- 空模块处理
- RESTFul资源控制器
- 控制器中间件
- 请求对象Request(url参数)
- 请求信息
- 获取输入变量($_POST、$_GET等)
- 请求类型的获取与伪装
- HTTP头信息
- 伪静态
- 参数绑定
- 请求缓存
- 响应对象Response
- 响应输出
- 响应参数
- 重定向
- 文件下载
- 错误页面的处理办法
- 应用公共文件common.php
- 模型
- 模型定义及常规属性
- 模型数据获取与模型赋值
- 查询
- 数据集
- 增加
- 修改
- 删除
- 条件
- 查询范围scope
- 获取器
- 修改器
- 搜索器
- 软删除
- 模型事件
- 关联预载入
- 模型关联
- 一对一关联
- 一对多关联
- 多对多关联
- 自动时间戳
- 事务
- 数据库
- 查询构造器
- 查询合集
- 子查询
- 聚合查询
- 时间查询
- 视图查询(比join简单)
- 获取查询参数
- 快捷方法
- 动态查询
- 条件查询
- 打印sql语句
- 增
- 删
- 改
- 查
- 链式操作
- 查询表达式
- 分页查询
- 原生查询
- JSON字段
- 链接数据库配置
- 分布式数据库
- 查询事件
- Db获取器
- 事务操作
- 存储过程
- Db数据集
- 数据库驱动
- 视图
- 模板
- 模板配置
- 模板位置
- 模板渲染
- 模板变量与赋值(assign)
- 模板输出替换
- url生成
- 模板详解
- 内置标签
- 三元运算
- 变量输出
- 函数输出
- Request请求参数
- 模板注释及原样输出
- 模板继承
- 模板布局
- 原生PHP
- 模板引擎
- 视图过滤
- 视图驱动
- 验证
- 验证进阶之最终版
- 错误和日志
- 异常处理
- 日志处理
- 调试
- 调试模式
- Trace调试
- SQL调试
- 变量调试
- 远程调试
- 杂项
- 缓存
- Session
- Cookie
- 多语言
- 上传
- 扩展说明
- N+1查询
- TP类库
- 扩展类库
- 数据库迁移工具
- Workerman
- think助手工具库
- 验证码
- Swoole
- request
- app
- Response
- View
- Validate
- Config
- 命令行
- 助手函数
- 升级指导(功能的添加与删除说明)
- siyucms
- 开始
- 添加页面流程
- 列表页加载流程
- 弹出框
- 基础控制器
- 基础模型
- 快速构建
- 表单form构建
- 表格table构建
- MakeBuilder
- 前端组件
- 日期组件
- layer 弹层组件
- Moment.js 日期处理插件
- siyucms模板布局
- 函数即其变量
- 前端页面
- $.operate.方法
- $.modal.方法:弹出层
- $.common.方法:通用方法
- 被cms重写的表格options
- 自定义模板
- 搜索框
- 自定义form表单
- 获取表单搜索参数并组装为url字符串