1# IntVal
2
3- `v::intVal()`
4
5Validates if the input is an integer.
6
7```php
8v::intVal()->validate('10'); // true
9v::intVal()->validate(10); // true
10```
11
12***
13See also:
14
15  * [Digit](Digit.md)
16  * [Finite](Finite.md)
17  * [Infinite](Infinite.md)
18  * [Numeric](Numeric.md)
19