-
Notifications
You must be signed in to change notification settings - Fork 33
Closed
Labels
Description
$v = \Inhere\Validate\Validation::check([
'title' => 'loggerSaveTime',
'age' => 2,
], [
['title', 'min', 30, 'msg' => '标题字数无效!'],
['age', 'int', 'min'=>4, 'max'=>16, 'msg' => '{attr} error!'],
]);
if ($v->isFail()) {
var_dump($v->getErrors());
//var_dump($v->firstError(!false));
}
getErrors只抛出一条异常信息: