I have a loop that calculates a couple revenue values then adds them together, like this:
$SalesGrowth = $C2012Sales+$C2011Sales;
In some cases, this works, and I get the expected, e.g.: 761.9 + 759.0 = 1520.9
In others, it looks like PHP randomly decides to round incorrectly (??) AND change the units (??) and I get:
8,788.0 + 8,794.3 = 16
What is going on here? I've even tried echoing out the separate sales values separated by a space, and they show up correctly, so the underlying figures aren't wrong.
number_formatconverts numbers to localized strings, there doesn't appear to be an inverse, i.e. a locale-aware string parser. Here is one previous question on the subject. – Kerrek SB Jan 4 at 19:06Zend_localemight help. – Kerrek SB Jan 4 at 19:07