PHP Rounding Numbers

I cannot seem to figure out how to always round up in PHP. \[code\]ceil()\[/code\] would be the obvious choice but I need the same functionality that \[code\]round()\[/code\] provides with its second parameter "precision". Here is an example:// Desired result: 6250echo round(6244.64, -2); // returns 6200echo round(6244.64, -1); // returns 6240echo ceil(6244.64) // returns 6245I need the number to always round up so that I can calculate an equal divisor based on parameters for a chart.
 
Back
Top