検証の特定のキーのカスタム メッセージを取得するにはどうすればよいですか?
たとえば、次のようになります。
try {
Respect\Validation\Validator::create()
->key('foo', v::length(20))
->key('bar', v::max(5))
->assert([
'foo' => 'Hello, world!',
'bar' => 30,
]);
} catch (Respect\Validation\Exceptions\ValidationException $exception) {
$errors = $exception->findMessages([
'key' => 'My custom message',
]);
var_dump($errors, $exception->getFullMessage());
}
これを返します:
array (size=1)
'key' => string 'My custom message' (length=17)
\-These rules must pass for "Array"
|-My custom message
| \-These rules must pass for "Hello, world!"
| \-"Hello, world!" must have a length greater than 20
\-Key bar must be valid on bar
\-These rules must pass for "30"
\-"30" must be lower than 5
foo
キーと個別のキーのカスタム メッセージを作成するにはどうすればよいbar
ですか?