文件名称:Validator:库验证器
文件大小:13KB
文件格式:ZIP
更新时间:2024-07-31 05:14:17
PHP
验证器 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
【文件预览】:
Validator-master
----.gitignore(14B)
----src()
--------DateTimeValidator.php(362B)
--------ArrayValidator.php(3KB)
--------BooleanValidator.php(1KB)
--------StringValidator.php(3KB)
--------IntegerValidator.php(3KB)
----.travis.yml(304B)
----index.php(243B)
----composer.json(285B)
----composer.lock(26KB)
----README.md(4KB)
----tests()
--------BooleanValidatorTest.php(677B)
--------DateTimeValidatorTest.php(170B)
--------IntegerValidatorTest.php(2KB)
--------ArrayValidatorTest.php(1KB)
--------StringValidatorTest.php(1KB)
----.scrutinizer.yml(5KB)
----phpunit.xml.dist(764B)