Re: [PHP] Dumb Question - Casting

[email protected] (Ashley Sheridan)
Newsgroups php.general
Message-ID <1266508219.13566.51.camel@localhost>
On Thu, 2010-02-18 at 09:47 -0600, Chuck wrote:

> Sorry, been doing heavy perl and haven't written any PHP in 3 years so a tad
> rusty.
> 
> Can someone explain why the second expression in this code snippet evaluates
> to 7 and not 8?
> 
> $a = (int) (0.1 +0.7);
> 
> echo "$a\n";
> 
> $x = (int) ((0.1 + 0.7) * 10);
> 
> echo "$x\n";
> 
> $y = (int) (8);
> 
> echo "$y\n";


It works as expected if you take out the int() parts in each line. I'm
not sure why, but the use of int() seems to be screwing around with the
results. That's why the first line outputs a 0.

Thanks,
Ash
http://www.ashleysheridan.co.uk
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.