Answers for "string to integer convert in php"

PHP
67

php string to int

intval($string);
Posted by: Guest on February-20-2020
0

php typecast to int

$num = "3.14";
$int = (int)$num;
$float = (float)$num;
Posted by: Guest on June-22-2020

Code answers related to "string to integer convert in php"

Browse Popular Code Answers by Language