Finite()
Validates if the input is a finite number.
v::finite()->assert('10');
// Validation passes successfully
v::finite()->assert(10);
// Validation passes successfully| Mode | Template |
|---|---|
default |
{{subject}} must be a finite number |
inverted |
{{subject}} must not be a finite number |
| Placeholder | Description |
|---|---|
subject |
The validated input or the custom validator name (if specified). |
- Math
- Numbers
| Version | Description |
|---|---|
| 1.0.0 | Created |