Gossamer Forum
Home : Products : Links 2.0 : Customization :

Rounding A Number

Quote Reply
Rounding A Number
Hi,
I am doing an extremely simple little mod to work out hits per day, and I need to know how to round a number off to the nearest 100th.

Example, variable $hitsPerDay equals 4.54626792 which needs to be rounded off to 4.55. How do I do this?

Thanks

Regards,
Robbo
Quote Reply
Re: Rounding A Number In reply to
Ok, worked it out already =)

$hitsPerDay = sprintf("%.2f", $hitsPerDay);

Rounds to two decimals