respect-validation/docs/validators/File.md
Henrique Moody 81310cc4d9
Rename namespace Rules to Validators
Since that namespace contains our “validators”, naming it as such makes
much more sense.
2026-01-05 17:36:35 +01:00

57 lines
1.2 KiB
Markdown

# File
- `File()`
Validates whether file input is as a regular filename.
```php
v::file()->isValid(__FILE__); // true
v::file()->isValid(__DIR__); // false
```
This validator will consider SplFileInfo instances, so you can do something like:
```php
v::file()->isValid(new SplFileInfo('file.txt'));
```
## Templates
### `File::TEMPLATE_STANDARD`
| Mode | Template |
| ---------- | ----------------------------------- |
| `default` | {{subject}} must be a valid file |
| `inverted` | {{subject}} must be an invalid file |
## Template placeholders
| Placeholder | Description |
| ----------- | ---------------------------------------------------------------- |
| `subject` | The validated input or the custom validator name (if specified). |
## Categorization
- File system
## Changelog
| Version | Description |
| ------: | ----------- |
| 0.5.0 | Created |
---
See also:
- [Directory](Directory.md)
- [Executable](Executable.md)
- [Exists](Exists.md)
- [Extension](Extension.md)
- [Image](Image.md)
- [Mimetype](Mimetype.md)
- [Readable](Readable.md)
- [Size](Size.md)
- [SymbolicLink](SymbolicLink.md)
- [Uploaded](Uploaded.md)
- [Writable](Writable.md)