tao-test/app/vendor/respect/validation/docs/rules/Finite.md

22 lines
340 B
Markdown
Raw Normal View History

2022-08-29 20:14:13 +02:00
# Finite
- `v::finite()`
Validates if the input is a finite number.
```php
v::finite()->validate('10'); // true
v::finite()->validate(10); // true
```
***
See also:
* [Digit](Digit.md)
* [Factor](Factor.md)
* [Infinite](Infinite.md)
* [IntType](IntType.md)
* [IntVal](IntVal.md)
* [Numeric](Numeric.md)
* [Type](Type.md)