jauert / validator

非常轻量级的验证器构建器。

0.1.0 2021-07-06 13:34 UTC

This package is auto-updated.

Last update: 2024-09-15 17:14:03 UTC


README

用法

$validator = new Validator();
$validator->notBlank('test', 'Empty spaces are not allowed.');
$validator->validate(['test' => ' ']);

// will result in ['test' => ['Empty spaces are not allowed.']]