mirror of
https://github.com/Respect/Validation.git
synced 2026-03-18 08:09:51 +01:00
40 lines
663 B
Markdown
40 lines
663 B
Markdown
# Key
|
|
|
|
- `Key(mixed $key)`
|
|
- `Key(mixed $key, Validatable $rule)`
|
|
- `Key(mixed $key, Validatable $rule, bool $mandatory)`
|
|
|
|
Validates an array key.
|
|
|
|
```php
|
|
$dict = [
|
|
'foo' => 'bar'
|
|
];
|
|
|
|
v::key('foo')->validate($dict); // true
|
|
```
|
|
|
|
You can also validate the key value itself:
|
|
|
|
```php
|
|
v::key('foo', v::equals('bar'))->validate($dict); // true
|
|
```
|
|
|
|
Third parameter makes the key presence optional:
|
|
|
|
```php
|
|
v::key('lorem', v::stringType(), false)->validate($dict); // true
|
|
```
|
|
|
|
The name of this validator is automatically set to the key name.
|
|
|
|
## Changelog
|
|
|
|
Version | Description
|
|
--------|-------------
|
|
0.3.9 | Created
|
|
|
|
***
|
|
See also:
|
|
|
|
- [Attribute](Attribute.md)
|