Skip to content
Advertisement

How to round up value in PHP?

I have a value like this:

JavaScript

and I want to round up this value into like this:

JavaScript

I already tried round, ceil and etc but the result is not what I expected.

Please anyone help.

Thanks

Advertisement

Answer

Taking your question literally, this will do it:

JavaScript

i.e. will round to the nearest 0.05.

If, for some reason, you want to always round up to 0.05, use

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement