Possible Duplicate:
PHP Round function – round up to 2 dp?
What my problem is:
When i use
ceil(3.6451895227869);
i get like
4
but i want
3.65
Can you help me out?
UPDATE
Please remember:
This should always round to ceil like while rounding
3.6333333333333
it must not be 3.63 but should be 3.64
Check out http://www.php.net/manual/en/function.round.php
EDIT
Try using this custom function http://www.php.net/manual/en/function.round.php#102641