I have a function called zen_get_products_discount_price_qty($new_products->fields['products_id']) which outputs this: $8.0000.
I want to turn the $8.0000 into $8.00. How can I do this?
feedback
|
|
Try this:
http://at2.php.net/number_format It's important to use number_format to get correctly values. The function substr() only delete the last two zeros. The function number_format() round the number.
| ||||
|
feedback
|
|
use number_format function | |||
|
feedback
|
| |||||
feedback
|
|
Or preg_replace :) echo preg_replace("/^\$(\d+?)(?:.\d*)?$/", "\$$1.00", '$8.0000'); Output: $8.00 | |||
|
feedback
|
|
DON'T use any substr(), printf(), number_format() etc. solutions. They don't take care of currencies other than USD where there might be different display requirements. Use instead Zen Cart global $currencies object:
Check includes/classes/currencies.php for reference. | |||
|
feedback
|