Skip to content
Advertisement

Remove trailing zeros until 2 decimals in PHP

I’ve tried casting to float and number_format but float will always round at two and number_format is fixed on the amount of decimals you specify.

So how can I do this like the following conversion

JavaScript

Advertisement

Answer

You can use float casting

JavaScript

and you have to check number of digits after decimal point and than get value like below :

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