respect-validation/docs/rules/Finite.md

34 lines
468 B
Markdown
Raw Permalink Normal View History

2015-08-20 05:35:43 +02:00
# Finite
- `Finite()`
2015-08-20 05:35:43 +02:00
Validates if the input is a finite number.
```php
v::finite()->validate('10'); // true
v::finite()->validate(10); // true
2015-08-20 05:35:43 +02:00
```
## Categorization
- Math
- Numbers
## Changelog
Version | Description
--------|-------------
1.0.0 | Created
***
2015-08-20 05:35:43 +02:00
See also:
- [Decimal](Decimal.md)
- [Digit](Digit.md)
2018-12-11 13:31:50 +01:00
- [Factor](Factor.md)
- [Infinite](Infinite.md)
2018-12-11 13:31:50 +01:00
- [IntType](IntType.md)
- [IntVal](IntVal.md)
- [NumericVal](NumericVal.md)
2018-12-11 13:31:50 +01:00
- [Type](Type.md)