PHP : intval() function
Description
The intval() function is used to get the integer value of a variable.
Version:
(PHP 4 and above)
Syntax:
intval(var_name, base)
Parameter:
Name | Description | Required / Optional |
Type |
---|---|---|---|
var_name | The scalar value being converted to an integer | Required | Mixed* |
base | The base for the conversion. (default is base 10) | Optional | Integer |
*Mixed : Mixed indicates that a parameter may accept multiple (but not necessarily all) types.
Return value
The integer value of var on success, or 0 on failure
Value Type : Integer.
Example :
Output :
102 102 102 102 -102 66 2 0 27 10200000 0 10 2
View the example in the browser
Practice here online :
See also
Previous: import_request_ variables
Next: is_array