Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to format a float value I have to two decimal places.

For example if I have a float for a price of 5.2, I want it to be formatted as 5.20.

share|improve this question
2  
php.net/manual/en/function.sprintf.php – user166390 Sep 15 '12 at 7:45

3 Answers

You'll want to use printf or sprintf. You can read more about it in the php docs.

share|improve this answer

Try this

echo number_format("5.2",2)
share|improve this answer
This might also be helpful. – FluffyJack Sep 15 '12 at 7:52
Thanks. It solved my problem. – Niharika Gupta Sep 15 '12 at 8:21
good :) please accept answer – GBD Sep 15 '12 at 8:25

If you're simply trying to ensure a number is displayed with two decimal places, you could also use number_format, or (if this is a currency value) money_format.

e.g.: echo number_format('5.2', 2);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.