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

I have this php

<?php echo round($price, 2); ?>

and the $price maybe 1.0000

i want 1.00 but i get only 1

any ideas

share|improve this question
3  
You should absolutely read that: php.net/manual/en/function.sprintf.php – j0ker Sep 21 '11 at 0:25
@j0ker: Please tell me what sprintf has to do with rounding. – Fake Code Monkey Rashid Sep 21 '11 at 0:30
3  
@FakeCodeMonkeyRashid sprintf("%.3f", 3.1415) ==> "3.142" – nickf Sep 21 '11 at 0:35
@nickf: Much better comment than j0ker's. – Fake Code Monkey Rashid Sep 21 '11 at 0:46
@FakeCodeMonkeyRashid ah ok, I see what you're doing there. You probably should just be editing to make the answers better though. – nickf Sep 21 '11 at 0:50

3 Answers

up vote 9 down vote accepted

The following printf() call should work for you:

<?php printf("%.2f", $price); ?>

The documentation for this syntax is best described on the sprintf() page.

share|improve this answer
I fail to see where any rounding takes place. – Fake Code Monkey Rashid Sep 21 '11 at 0:29
2  
@FakeCodeMonkeyRashid it happens in the call to round() and then when printing it, it is formatted to have exactly 2 trailing decimals. – nickf Sep 21 '11 at 0:33
1  
@nickf: Tim should have touched on that briefly. What happens if the PHP documentation is offline when someone looks at this answer? – Fake Code Monkey Rashid Sep 21 '11 at 0:44
The world will collapse if their documentation is ever down... – nathanjosiah Mar 14 '12 at 23:56

This works:

echo number_format(round($price, 2), 2);

share|improve this answer
Just be aware that (AFAIK) this is locale aware, and that with certain setups it may output 1,00 -- though I may be mistaken here. – nickf Sep 21 '11 at 0:32

number_format is your best bet.

string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )

Example:

<?php echo number_format(1.0000, 2, '.', ','); ?>
share|improve this answer
I fail to see where any rounding takes place. – Fake Code Monkey Rashid Sep 21 '11 at 0:29
@FakeCodeMonkeyRashid the second parameter?? – nickf Sep 21 '11 at 0:34
@nickf: Indeed. – Fake Code Monkey Rashid Sep 21 '11 at 0:45
@FakeCodeMonkeyRashid number_format rounds implicitly, try <?php echo number_format(1.5); ?> - prints "2". – Louis Sep 21 '11 at 0:46
@Louis: I know what number_format does but you can't assume that everyone who stumbles onto your question knows what it does too. If people could be bothered to google everything we wouldn't have stackoverflow. My point was that anything that may not be immediately clear to a beginner should be touched on briefly. – Fake Code Monkey Rashid Sep 21 '11 at 0:49
show 2 more comments

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.