In PHP I have decimal numbers that may or may not have trailing zeros.
For example
1 1.1 43.87
How do I make sure that all these
You should use number_format():
number_format(1.1, 2);