i have a problem with sanitizing data.
Is there a built in php function to sanitize data like htmlspecialchars/htmlenteties, which if provided a non string value it keeps its original type. Example:
The problem:
$a = 1;//(int);
$b = htmlspecialchars($a);
var_dump($b); // string "1"
The desired effect:
$a = 1;//(int);
$b = htmlspecialchars($a);
var_dump($b); // integer"1"
Thanks for the time.
Results in