Take the following code:
echo round(1215.49999);
The answer I get, is 1215
, which is what I want.
However, when you write this:
echo round(1215.499999999999999);
The answer I get is 1216
.
Is there any particular reason for this? I would like to end up with 1215
in both cases.