Given this PHP code:

// total is 71.24 (float)
$value = $total * 100;
var_dump($value);
$valuecast = (int)$value;
var_dump($valuecast);
settype($value, 'int');
var_dump($value);

var_dump($value) gives float(7124)

var_dump($valuecast) gives int(7123)

var_dump($value) after settype gives int(7123)

How can I get the correct type conversion?

link|improve this question
1  
Did you try intval? – Gumbo Jan 13 '10 at 9:05
feedback

2 Answers

up vote 2 down vote accepted

For float to int, I'd suggest round. This is to cater to IEEE float imprecision.

link|improve this answer
THANK YOU, it works!!! I tried every PHP conversion function, except this one (of course). – lrosa Jan 13 '10 at 9:08
feedback

From PHP Manual on TypeCasting Float to Integer

Warning

Never cast an unknown fraction to integer, as this can sometimes lead to unexpected results.

<?php
    echo (int) ( (0.1+0.7) * 10 ); // echoes 7!
?>

See also the warning about float precision.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.