mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 07:45:45 +01:00
9 lines
165 B
Markdown
9 lines
165 B
Markdown
# Readable
|
|
|
|
- `v::readable()`
|
|
|
|
Validates if the given data is a file exists and is readable.
|
|
|
|
```php
|
|
v::readable()->validate('/path/of/a/readable/file'); //true
|
|
```
|