How to convert all $_POST or $_GET values to Integers?
|
|
|
|
|
Question: How to convert all $_POST or $_GET values to Integers? Answer: By using the built-in PHP functions array_map and intval. - array_map = Applies the callback to the elements of the given arrays, this applies the function for each value of an array (PHP 4 >= 4.0.6, PHP 5)
- intval = Get the integer value of a variable (PHP 4, PHP 5)
Examples:
$post_int = array_map('intval', $_POST); //Converting every post value to integer
$get_int = array_map('intval', $_GET); //Converting every get value to integer
|