Download the PHP package githusband/validation without Composer

On this page you can find all versions of the php package githusband/validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package validation

English | 中文

Validation

简单,直观,客制化

目录

Validation —— 一款 PHP 直观的数据验证器

Validation 用于对数据合法性的检查。 目标只有 10 个字 - 规则结构即是数据结构

github 仓库

期待任何形式的贡献,让我们一起开发或优化 Validation!谢谢!

🙋 为什么写这个工具? 1. 对于API的参数,理论上对每个参数都应该进行合法性检查,尤其是那些需要转发给其他API接口或者需要存储到数据库的参数。 *比如,数据库基本上对数据长度类型等有限制,对于长度的验证可谓是简单繁琐,使用该工具可以大大简化代码。* 2. 如果API参数过多,验证的代码量势必很大,无法直观通过代码明白参数格式。 3. 只需定制一个验证规则数组,规则数组长啥样,请求参数就长啥样。 4. 方便地多样化地设置验证方法返回的错误信息 5. ~~暂时想不到,想到了再给你们编。~~ 🐶

1. 简介

1.1 特点

1.2 一个例子

理论上,该工具是用于验证复杂的数据结构的,但如果你想验证单一字符串,也可以,例如

2. 安装

3. 开发

如果你有想法优化开发本工具,以下将为你提供帮助:

src/Test 目录下已经内置了单元测试类 Unit.php 和 文档测试类 Readme.php 通过 Composer Script 调用它们。

克隆本项目后,请先加载项目的自动加载文件:

由于测试文件中使用了部分外部库,如 uuid, 我们不能简单地加载项目的自动加载文件,而需要下载外部库,

这里包含了所有功能的测试,只包含部分内置函数。 原则上修改代码后跑一遍单元测试,确保功能正常。

如果你已经安装 Docker,那么,你可以一次性测试多个 PHP 版本: PHP v5.6, PHP v7.4.33PHP 最新版本

文档代码:1.2 一个例子

文档代码:附录 2 - 验证完整示例

4. 功能介绍

4.1 方法及其标志

一个字段对应一个验证规则集,一个规则集由多个验证 规则方法(函数)错误消息模板(可选的) 组成。 为了便于理解以及简化规则,允许采用一些方法 标志 代表实际的方法(函数)。

例如:

标志 方法 含义
* required 必要的,不允许为空
O optional 可选的,允许不设置或为空
>[20] greater_than 数字必须大于20
length><=[2,16] length_greater_lessequal 字符长度必须大于2且小于等于16
ip ip 必须是ip地址

完整的方法及其标志见 附录 1 - 方法标志及其含义

4.2 正则表达式

一般以 / 开头,以 / 结尾,表示是正则表达式 正则表达式最后面的 / 之后可能跟随着 模式修饰符,如 /i

支持在一个串联规则中,同时使用多个正则表达式

4.3 方法传参

在以字符串书写的规则中,如何给方法传参呢?

传参的几种方式

  1. 标准参数 跟 PHP 函数使用参数一样,参数写在小括号()里面,多个参数以逗号,分隔,,前后不允许多余的空格 例如,

表示 age 必须等于20。这里的 @this 代表当前 age 字段的值。

  1. 省略 @this 参数 当参数写在中括号[]里面时,首个 @this 参数可省略不写。 例如,上述例子可简写为:

  2. 省略参数 当函数参数只有一个且为当前字段值时,可省略 ()[] ,只写方法。 例如,

  3. 默认参数 支持默认参数,但需要额外配置。见 设置方法标志 例如,以下表示数据为索引数组,unique 验证其子数据必须是唯一的。但参数每次都得写 @parent 稍显多余,通过配置默认参数,可以省略之。

参数变量表

参数 描述
静态值 代表参数是静态字符串,允许为空。例如 20
@this 代表参数是当前字段的值
@parent 代表参数是当前字段的父元素的值
@root 代表参数是整个原始验证数据
@{field_path} 代表参数是整个验证数据中的字段名是 field_path 的字段的值。例如 @id, @person.name

参数分隔符:

参数类型

自动探测参数的类型并强制转换为对应类型。

  1. 被双引号(")或单引号(')包含的内容即被视为字符串。否则将探测并强制转换类型。
    • 例如 "abc", 'abc' 或者 abc 都被视为字符串 abc
  2. 支持转换的类型有:
    • int:例如 123 为整形,"123" 为字符串
    • float: 例如 123.0
    • bool: 例如 false 或者 TRUE
    • array: 例如 [1,2,3] 或者 ["a", "b"]
    • object: 例如 {"a": "A", "b": "B"}
    • 例如: my_method[[1,"2",'3'],100,false,"true"]
    • [1,"2",'3'] 将被转换为 array([1,"2","3"])
    • 100 将被转换为 int(100)
    • false 将被转换为 bool(false)
    • "true" 将被转换为 string(true)

4.4 自定义方法

Validation 类中内置了一些验证方法,例如 *>, length>=, ip 等等。详见 附录 1 - 方法标志及其含义

如果验证规则比较复杂,内置方法无法满足你的需求,可以拓展你自己的方法。 如果方法中根据不同的判断可能返回不同的错误信息,见 4.13 错误信息模板 - 3. 在方法中直接返回模板 一节。

自定义方法的几种方式

拓展方法有以下几种方式:

1. 新增方法:add_method($method, $callable, $method_symbol = '')

新增一个新的方法

👇 点击查看代码 注册一个新的方法,`check_id`,并设置其标志为 `c_id` 规则这么写


2. 新增方法类:add_rule_class

一个方法类包含多个方法及其标志。支持静态或非静态的方法。 由于优先级原因,如需覆盖验证类 Validation 中的原生方法,请使用新增方法类,拓展类可能无法覆盖。

👇 点击查看代码 创建一个新的文件,`RuleClassTest.php` 调用 `add_rule_class` 注册一个新的方法类,RuleClassTest 实际上,`add_rule_class` 也是将规则类插入到 `rule_classes` 属性中,那么我们也可以通过另一种更加直接的方法注册新的方法类: 规则这么写


3. 拓展 Validation

拓展 Validation 类并重写内置方法或者增加新的内置方法。推荐用 trait

👇 点击查看代码 创建一个新的文件,`RuleExtendTrait.php` 拓展类, 新增方法及其标志 规则就这么写


4. 全局函数

包括系统自带的函数和用户自定义的全局函数。

几种方法的优先级 新增方法 > 新增方法类 > 拓展 Validation 类 > 内置方法 > 全局函数

若方法都不存在,则报错:未定义

设置方法标志

允许设置方法的标志,更加直观。例如,greater_than 的标志是 >。参考 附录 1 - 方法标志及其含义 从上一节中,你应该已经注意到方法标志的使用了。那也是最通用的设置标志的方式。例如,

方法标志 $method_symbols 可能还支持其他属性:

对于 2. 新增方法类,如果支持方法标志的全部属性,例子如下,

👇 点击查看代码

4.5 串联并联规则

[or] 的标志是 [||] , 标志支持自定义,使用方法同 [or]

4.6 条件规则

When 条件规则

When 条件规则:给任意规则或方法增设条件,一般只有当条件满足时,才验证该方法,否则跳过该方法。

  1. 一般地,只有当条件满足时,才验证该方法,否则跳过该方法。例如:

  2. 特殊地,required, optional, optional_unset,这三个规则,可能需要验证字段是否非空。

下面,我以 required 为例,说明 when()when_not() 的用法。

  1. 如果条件成立,则验证 required 方法
  2. 如果条件不成立,说明该字段是可选的: 2.1. 若该字段为空,立刻返回验证成功; 2.2. 若该字段不为空,则继续验证后续方法
  1. 如果条件不成立,则验证 required 方法
  2. 如果条件成立,说明该字段是可选的: 2.1. 若该字段为空,立刻返回验证成功; 2.2. 若该字段不为空,则继续验证后续方法

IF 条件规则

IF 条件规则的写法跟 PHPif 结构 语法差不多, 例如:

支持的逻辑操作符:

执行逻辑是:

  1. 如果条件成立,则继续验证后续方法。
  2. 如果条件不成立,则不继续验证后续方法,立即返回成功。

例子 1:

例子 2:

例子 3:

对于例子 3 ,需要说明的是,我们只支持一个逻辑否 !, !!=(@id,50) 其实是两个部分,逻辑否 ! 和 方法 not_equal 的标志 !=。标志见 附录 1 - 方法标志及其含义

4.7 无限嵌套的数据结构

支持无限嵌套的数据结构,包括关联数组,索引数组

1. 无限嵌套的关联数组 验证数据怎么写,规则数组就怎么写。例如:

2. 无限嵌套的索引数组 索引数组字段的名称后面加上标志 .*,或者给索引数组字段加上唯一子元素 *

👇 点击查看代码

数组自身的规则

上述的例子,一个规则数组便可完成对复杂结构的数据的验证。但只能对叶子字段进行验证,如果要对父数组本身进行验证,还无法实现。 那么,我们设计通过一个 __self__ 叶子字段,表示父数组本身的规则。

1. 关联数组的自身规则

2. 索引数组的自身规则

4.8 可选字段

  1. 一般的,对于一个叶子字段(无任何子字段),可以直接使用 optional 方法,表示该字段是可选的。
  2. 有时候,数组也是可选的,但是一旦设置,其中的子元素必须按规则验证。对于这种情况,只需要在数组字段名后面加上 [optional],表示该数组是可选的。
  3. 与在字段名后面加上 [optional] 一样的效果,给字段增加唯一子元素 [optional],也表示该字段是可选的。
  4. [optional] 的标志是 [O],两者可以互相替换。

例如:

4.9 特殊的验证规则

特殊规则列表:

全称 标志 含义
[optional] [O] 表明字段是可选的,支持数组。见 4.8 可选字段
[or] [||] 表明单个字段是或规则,多个规则满足其一即可。见 4.5 串联并联规则
(无全称) .* 表明字段是索引数组。见 4.7 无限嵌套的数据结构

注意:标志使用方法和全称一样,且标志支持 客制化。

4.10 客制化配置

支持客制化的配置有:

👇 点击查看配置

例如,你觉得我设计的规则太丑了,一点都不好理解。😡 于是你做了如下的定制:

那么,1.2 一个例子 中的规则可以这么写:

是不是变得更加漂亮了呢?😍 快来试试吧!

启用实体(重点)

如你所见,规则集都是用字符串书写的,每次验证数据,我们需要将规则集解析成一个个规则,再将规则解析成方法及其参数,最后验证对应数据。 对于 php-fpm 的请求,每一个请求都将启动一个进程,一般只需验证一个数据,结束请求后进程也销毁,所以开启实体反而浪费性能。 但对于常驻后台的服务, 例如 swoole,可以开启实体配置,将规则集解析成实体类,避免重复解析的问题。

启用实体不会影响验证数据过程产生任何变化。如果你对实体结构感兴趣,请看这里。

4.11 国际化

为不同的方法定制默认的错误消息模板。见 4.13 错误信息模板 - 第 3 点

国际化列表

语言 文件名 类名 别名
English(Default) EnUs.php EnUs en-us
Chinese ZhCn.php ZhCn zh-cn

创建你的国际化文件

  1. 创建文件 /MyPath/MyLang.php

如果方法有对应的标志,比如 equal 的标志是 =, 那么这里的键推荐用方法标志 =。 如果方法没有对应标志,那么就只能用方法名,比如 check_custom

  1. 配置国际化文件的路径

直接使用国际化对象 实际上,上面国际化文件的方法最终调用的是 custom_language 接口。

4.12 验证全部数据

默认地,即使某个字段验证失败,也会继续验证后续的全部数据。 可设置当任意字段验证失败后,立即结束验证后续字段。

4.13 错误信息模板

如何判定方法验证失败? 当且仅当方法 返回值 === true 时,表示验证成功,否则表示验证失败。

当一个字段验证失败,你可能希望

那么,你有多个途径可以设置错误信息模板:

  1. 在规则集中设置一个统一的模板(普通字符串)
  2. 在方法中直接返回模板(普通字符串)
  3. 为每一个方法定制模板 3.1. 在 规则集 中设置临时模板(JSON字符串等) 3.2. 通过 国际化 设置默认的模板

模板优先级 从高到低:1 > 2 > 3

支持被单独设置模板的方法,要求:

模板变量

变量 描述 例子
@this 当前字段 id 或者 favorite_animation.name
@method 当前方法 > 或者 greater_than
@p{x} 当前字段的第 x 个参数 @p1 代表第 1 个参数的值。比如 100
@t{x} 当前字段的第 x 个参数的类型 @t1 代表第 1 个参数的类型。比如 int

1. 在 规则集 中设置临时模板

临时模板只对当前规则集有效,对其他规则集无效。

1.1 在一个规则集的最后,加入标志 ">>", 注意前后各有一个空格。自定义标志见 4.10 客制化配置

1.1.1. 普通字符串:表示无论规则中的任何方法验证失败,都使用此错误信息 它对当前字段的所有规则都生效。无论方法返回 false 或者其他错误模板,都使用此错误信息

1.1.2. JSON 字符串:为每一个方法设置一个错误信息模板 它只对对应的规则都生效。如果方法返回 false,则使用对应的错误信息

当其中任一方法验证错误并返回 false,对应的报错信息为

1.1.3. 专属字符串(不推荐):为每一个方法设置一个错误信息模板,同 JSON

1.2. 错误信息模板数组:为每一个方法设置一个错误信息模板,同 JSON

不允许包含任何其他键。

2. 在方法中直接返回模板

当且仅当方法 返回值 === true 时,表示验证成功,否则表示验证失败。

所以方法允许四种错误返回:

👇 点击查看完整方法返回示例


3. 通过国际化设置默认模板

默认模板对所有规则集生效,但可能被临时模板替代。

见 4.11 国际化

4.14 错误信息格式

一共有四种不同的错误信息格式:

详见 附录 3 - 错误信息格式


附录 1 - 方法标志及其含义

标志 方法 可变长度参数 错误消息模板
* required @this 不能为空
O:? optional:when 在特定情况下,@this 才能为空
uuid is_uuid @this 必须是 UUID
> greater_than @this 必须大于 @p1
length>=<= length_between @this 长度必须大于等于 @p1 且小于等于 @p2
<number> in_number_array @this 必须是数字且在此之内 @p1
date> date_greater_than @this 日期必须大于 @p1
👇 点击查看 附录 1 - 方法标志及其含义 标志 | 方法 | 可变长度参数 | 错误消息模板 ---|---|:---:|--- / | `default` | 否 | @this 验证错误 `.*` | `index_array` | 否 | @this 必须是索引数组 `:?` | `when` | 否 | 在特定情况下, `:!?` | `when_not` | 否 | 在非特定情况下, `*` | `required` | 否 | @this 不能为空 `*:?` | `required:when` | 否 | 在特定情况下,@this 不能为空 `*:!?` | `required:when_not` | 否 | 在非特定情况下,@this 不能为空 `O` | `optional` | 否 | @this 永远不会出错 `O:?` | `optional:when` | 否 | 在特定情况下,@this 才能为空 `O:!?` | `optional:when_not` | 否 | 在非特定情况下,@this 才能为空 `O!` | `optional_unset` | 否 | @this 允许不设置,且一旦设置则不能为空 `O!:?` | `optional_unset:when` | 否 | 在特定情况下,@this 允许不设置,且一旦设置则不能为空。否则不能为空 `O!:!?` | `optional_unset:when_not` | 否 | 在非特定情况下,@this 允许不设置,且一旦设置则不能为空。否则不能为空 / | `preg` | 否 | @this 格式错误,必须是 @preg / | `preg_format` | 否 | @this 方法 @preg 不是合法的正则表达式 / | `call_method` | 否 | @method 未定义 `=` | `equal` | 否 | @this 必须等于 @p1 `!=` | `not_equal` | 否 | @this 必须不等于 @p1 `==` | `strictly_equal` | 否 | @this 必须严格等于 @t1(@p1) `!==` | `not_strictly_equal` | 否 | @this 必须严格不等于 @t1(@p1) `>` | `greater_than` | 否 | @this 必须大于 @p1 `<` | `less_than` | 否 | @this 必须小于 @p1 `>=` | `greater_equal` | 否 | @this 必须大于等于 @p1 `<=` | `less_equal` | 否 | @this 必须小于等于 @p1 `><` | `greater_less` | 否 | @this 必须大于 @p1 且小于 @p2 `><=` | `greater_lessequal` | 否 | @this 必须大于 @p1 且小于等于 @p2 `>=<` | `greaterequal_less` | 否 | @this 必须大于等于 @p1 且小于 @p2 `>=<=` | `between` | 否 | @this 必须大于等于 @p1 且小于等于 @p2 `` | `in_number_array` | **是** | @this 必须是数字且在此之内 @p1 `!` | `not_in_number_array` | **是** | @this 必须是数字且不在此之内 @p1 `` | `in_string_array` | **是** | @this 必须是字符串且在此之内 @p1 `!` | `not_in_string_array` | **是** | @this 必须是字符串且不在此之内 @p1 `length=` | `length_equal` | 否 | @this 长度必须等于 @p1 `length!=` | `length_not_equal` | 否 | @this 长度必须不等于 @p1 `length>` | `length_greater_than` | 否 | @this 长度必须大于 @p1 `length<` | `length_less_than` | 否 | @this 长度必须小于 @p1 `length>=` | `length_greater_equal` | 否 | @this 长度必须大于等于 @p1 `length<=` | `length_less_equal` | 否 | @this 长度必须小于等于 @p1 `length><` | `length_greater_less` | 否 | @this 长度必须大于 @p1 且小于 @p2 `length><=` | `length_greater_lessequal` | 否 | @this 长度必须大于 @p1 且小于等于 @p2 `length>=<` | `length_greaterequal_less` | 否 | @this 长度必须大于等于 @p1 且小于 @p2 `length>=<=` | `length_between` | 否 | @this 长度必须大于等于 @p1 且小于等于 @p2 `int` | `integer` | 否 | @this 必须是整型 / | `float` | 否 | @this 必须是小数 / | `string` | 否 | @this 必须是字符串 `array` | `is_array` | 否 | @this 必须是数组 / | `bool` | 否 | @this 必须是布尔型 `bool=` | `bool_equal` | 否 | @this 必须是布尔型且等于 @p1 / | `bool_str` | 否 | @this 必须是布尔型字符串 / | `bool_string` | 否 | @this 必须是布尔型字符串 `bool_string=` | `bool_string_equal` | 否 | @this 必须是布尔型字符串且等于 @p1 `` | `require_array_keys` | **是** | @this 必须是数组且其字段有且只有包含 @p1 / | `dob` | 否 | @this 必须是正确的日期 / | `file_base64` | 否 | @this 必须是正确的文件的base64码 / | `file_base64:mime` | 否 | @this 文件类型必须是 @p1 / | `file_base64:size` | 否 | @this 文件尺寸必须小于 @p2kb / | `oauth2_grant_type` | 否 | @this 必须是合法的 OAuth2 授权类型 `email` | `is_email` | 否 | @this 必须是邮箱 `url` | `is_url` | 否 | @this 必须是网址 `ip` | `is_ip` | 否 | @this 必须是IP地址 `ipv4` | `is_ipv4` | 否 | @this 必须是IPv6地址 `ipv6` | `is_ipv6` | 否 | @this 必须是IPv6地址 `mac` | `is_mac` | 否 | @this 必须是MAC地址 `uuid` | `is_uuid` | 否 | @this 必须是 UUID `ulid` | `is_ulid` | 否 | @this 必须是 ULID `alpha` | `is_alpha` | 否 | @this 只能包含字母 `alpha_ext` | `is_alpha_ext` | 否 | @this 只能包含字母和_- / | `alpha_ext:@p2` | 否 | @this 只能包含字母和@p2 `alphanumeric` | `is_alphanumeric` | 否 | @this 只能包含字母和数字 `alphanumeric_ext` | `is_alphanumeric_ext` | 否 | @this 只能包含字母,数字和_- / | `alphanumeric_ext:@p2` | 否 | @this 只能包含字母,数字和@p2 `datetime` | `is_datetime` | 否 | @this 必须是格式正确的日期时间 / | `datetime:format:@p1` | 否 | @this 必须是日期时间且格式为 @p1 / | `datetime:format:@p2` | 否 | @this 必须是日期时间且格式为 @p2 / | `datetime:format:@p3` | 否 | @this 必须是日期时间且格式为 @p3 / | `datetime:invalid_format:@p1` | 否 | @this 格式 @p1 不是合法的日期时间格式 / | `datetime:invalid_format:@p2` | 否 | @this 格式 @p2 不是合法的日期时间格式 / | `datetime:invalid_format:@p3` | 否 | @this 格式 @p3 不是合法的日期时间格式 `datetime=` | `datetime_equal` | 否 | @this 日期时间必须等于 @p1 `datetime!=` | `datetime_not_equal` | 否 | @this 日期时间必须不等于 @p1 `datetime>` | `datetime_greater_than` | 否 | @this 日期时间必须大于 @p1 `datetime>=` | `datetime_greater_equal` | 否 | @this 日期时间必须大于等于 @p1 `datetime<` | `datetime_less_than` | 否 | @this 日期时间必须小于 @p1 `datetime<=` | `datetime_less_equal` | 否 | @this 日期时间必须小于等于 @p1 `datetime><` | `datetime_greater_less` | 否 | @this 日期时间必须大于 @p1 且小于 @p2 `datetime>=<` | `datetime_greaterequal_less` | 否 | @this 日期时间必须大于等于 @p1 且小于 @p2 `datetime><=` | `datetime_greater_lessequal` | 否 | @this 日期时间必须大于 @p1 且小于等于 @p2 `datetime>=<=` | `datetime_between` | 否 | @this 日期时间必须在 @p1 和 @p2 之间 `date` | `is_date` | 否 | @this 必须是日期且格式为 Y-m-d / | `date:format:@p1` | 否 | @this 必须是日期且格式为 @p1 / | `date:format:@p2` | 否 | @this 必须是日期且格式为 @p2 / | `date:format:@p3` | 否 | @this 必须是日期且格式为 @p3 / | `date:invalid_format:@p1` | 否 | @this 格式 @p1 不是合法的日期格式 / | `date:invalid_format:@p2` | 否 | @this 格式 @p2 不是合法的日期格式 / | `date:invalid_format:@p3` | 否 | @this 格式 @p3 不是合法的日期格式 `date=` | `date_equal` | 否 | @this 日期必须等于 @p1 `date!=` | `date_not_equal` | 否 | @this 日期必须不等于 @p1 `date>` | `date_greater_than` | 否 | @this 日期必须大于 @p1 `date>=` | `date_greater_equal` | 否 | @this 日期必须大于等于 @p1 `date<` | `date_less_than` | 否 | @this 日期必须小于 @p1 `date<=` | `date_less_equal` | 否 | @this 日期必须小于等于 @p1 `date><` | `date_greater_less` | 否 | @this 日期必须大于 @p1 且小于 @p2 `date>=<` | `date_greaterequal_less` | 否 | @this 日期必须大于等于 @p1 且小于 @p2 `date><=` | `date_greater_lessequal` | 否 | @this 日期必须大于 @p1 且小于等于 @p2 `date>=<=` | `date_between` | 否 | @this 日期必须在 @p1 和 @p2 之间 `time` | `is_time` | 否 | @this 必须是时间且格式为 H:i:s / | `time:format:@p1` | 否 | @this 必须是时间且格式为 @p1 / | `time:format:@p2` | 否 | @this 必须是时间且格式为 @p2 / | `time:format:@p3` | 否 | @this 必须是时间且格式为 @p3 / | `time:invalid_format:@p1` | 否 | @this 格式 @p1 不是合法的时间格式 / | `time:invalid_format:@p2` | 否 | @this 格式 @p2 不是合法的时间格式 / | `time:invalid_format:@p3` | 否 | @this 格式 @p3 不是合法的时间格式 `time=` | `time_equal` | 否 | @this 时间必须等于 @p1 `time!=` | `time_not_equal` | 否 | @this 时间必须不等于 @p1 `time>` | `time_greater_than` | 否 | @this 时间必须大于 @p1 `time>=` | `time_greater_equal` | 否 | @this 时间必须大于等于 @p1 `time<` | `time_less_than` | 否 | @this 时间必须小于 @p1 `time<=` | `time_less_equal` | 否 | @this 时间必须小于等于 @p1 `time><` | `time_greater_less` | 否 | @this 时间必须大于 @p1 且小于 @p2 `time>=<` | `time_greaterequal_less` | 否 | @this 时间必须大于等于 @p1 且小于 @p2 `time><=` | `time_greater_lessequal` | 否 | @this 时间必须大于 @p1 且小于等于 @p2 `time>=<=` | `time_between` | 否 | @this 时间必须在 @p1 和 @p2 之间


如果您不知道如何使用附录中的任意方法,请于 tests 文件夹中搜索 test_method_ + 方法名。例如:

里面有详细的示例。

目前暂无方法的使用文档。


附录 2 - 验证完整示例

设想一下,如果用户数据如下,它包含关联数组,索引数组,我们要如何定制规则去验证它,如何做到简单直观呢?

👇 点击查看代码 打印结果为 更多的错误信息格式,见 [附录 3 - 错误信息格式](#附录-3---错误信息格式)

附录 3 - 错误信息格式

一维字符型结构

一维关联型结构

无限嵌套字符型结构

无限嵌套关联型结构



All versions of validation with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package githusband/validation contains the following files

Loading the files please wait ....