Answers for "decimal to integer php"

PHP
43

php string to int

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

string to decimal php

$num = (double) "10.12";
Posted by: Guest on January-26-2021
3

convert to int php

$myintvariable = intval($myvariable);
Posted by: Guest on February-16-2020
1

string to int php

$str = "10";
$num = (int)$str;
Posted by: Guest on December-17-2020

Code answers related to "decimal to integer php"

Browse Popular Code Answers by Language