I cannot seem to figure out how to always round up in PHP. ceil() would be the obvious choice but I need the same functionality that round() provid
ceil()
round()
You could divide by 10, ceil(); and then multiply by ten