alexkratky / validatorx
用于验证用户输入的类。
v1.0.0
2020-05-14 09:17 UTC
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2024-09-14 18:47:47 UTC
README
用于验证用户输入的类。
安装
composer require alexkratky/validatorx
用法
require 'vendor/autoload.php'; use AlexKratky\Validator; use AlexKratky\IValidator; Validator::addRule("TestRule", new class implements IValidator { public static function validate($input): bool {return ($input === "test");} }); Validator::customValidate("Alex", "TestRule"); // false Validator::customValidate("test", "TestRule"); // true Validator::validate("test", Validator::RULE_CUSTOM, "TestRule"); // true