验证器
Validator 是一个小型库,允许您验证大量数据,如整数、字符串、布尔值、数组和日期时间。 Validator 简单易用,调用符合你验证意愿的方法,看看你好不好。
如果验证通过,则所有方法都返回 true,否则返回 false。
这个怎么运作
库的一些使用示例
整数验证器
IntegerValidator 方法列表:
是平等的()
isSuperior()
isInferior()
在。。。之间()
isNegative()
isPositive()
<?php
// Here we check if the integer is equal to number 13
$ validation = \ JB \ Validator \ IntegerValidator :: isEqual ( $ integer , 13 );
// Here we chec
2021-07-12 14:04:49
13KB
PHP
1