convert varchar to int php code example
Example 1: php string to int
intval($string);
Example 2: integer to string php
return strval($integer);
Example 3: php to int
$num = "3.14";
$int = (int)$num;
Example 4: convert to int php
$myintvariable = intval($myvariable);