how to convert into int php code example
Example 1: php string to int
intval($string);
Example 2: php typecast to int
$num = "3.14";
$int = (int)$num;
$float = (float)$num;
intval($string);
$num = "3.14";
$int = (int)$num;
$float = (float)$num;