I have created a PHP system that is having some problems with rounding. After looking further into this, I found that it goes back to the round function in PHP.
For instance...
Rounding 2047.615 to 2 decimal places gives 2047.62 (as expected)
Rounding 2048.615 to 2 decimal places gives 2048.61 (doesn't round up as expected)
I understand that the issue here most likely goes back to the inaccuracy of representing floating numbers in binary, but what is the most elegant way to take care of such issues?