Heloise
0
Q:

cast string to int php

intval($string);
24
s = "123";
echo intval(s); // 123

s = "hello";
echo intval(s);	//0
2
$myintvariable = intval($myvariable);
3
$num = "3.14"; 
$int = (int)$num;//string to int
$float = (float)$num;//string to float
10
Using intval() and floatval() Function. The intval() and floatval() functions can also be used to convert the string into its corresponding integer and float values respectively. echo floatval ( $num );
0
intval ( mixed $var [, int $base = 10 ] ) : int
-1

New to Communities?

Join the community