Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have some price values to display in my page.

i am writing a function which takes the float price and returns the formatted currency val with currency code too..

like fnPrice(1001.01) should print $ 1,000.01

share|improve this question

2 Answers

up vote 18 down vote accepted

The easiest answer is number_format().

echo "$ ".number_format($value, 2);

If you want your application to be able to work with multiple currencies and locale-aware formatting (1.000,00 for some of us Europeans for example), it becomes a bit more complex.

There is money_format() but it doesn't work on Windows and relies on setlocale(), which is rubbish in my opinion, because it requires the installation of (arbitrarily named) locale packages on server side.

If you want to seriously internationalize your application, consider using a full-blown internationalization library like Zend Framework's Zend_Locale and Zend_Currency.

share|improve this answer
2  
+1 didn't know about those problems with Windows. – Sarfraz Oct 25 '10 at 11:12
Nice answer, +1 for Zend_Locale & Zend_Currency – RobertPitt Oct 25 '10 at 11:15
Excellent answer – MikeMurko Feb 11 at 17:56

sprintf() is the PHP function for all sorts of string formatting http://php.net/manual/en/function.sprintf.php

I use this function:

function formatDollars($dollars){
  return '$ '.sprintf('%0.2f', $dollars);
}
share|improve this answer
2  
this won't add commas (thousands separators) – stillstanding Oct 25 '10 at 11:38

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.