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
|
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 |
|||
|
|
|
The easiest answer is
If you want your application to be able to work with multiple currencies and locale-aware formatting ( There is If you want to seriously internationalize your application, consider using a full-blown internationalization library like Zend Framework's Zend_Locale and Zend_Currency. |
|||||||||
|
|
sprintf() is the PHP function for all sorts of string formatting http://php.net/manual/en/function.sprintf.php I use this function:
|
|||||
|