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?

link|improve this question

77% accept rate
1  
Did not know that. thankyou. – rlemon Sep 23 '11 at 14:15
feedback

7 Answers

up vote 1 down vote accepted

Try this:

$value = '$8.0000';
$value = str_replace('$', '', $value);
$value = number_format($value, 2);
echo $value;

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.

number_format(8.1199, 2); // == 8.12 - correct
substr(8.1199, 0, -2); // == 8.11 - false!
link|improve this answer
feedback

use number_format function

link|improve this answer
feedback

first remove $ then use round() function.

link|improve this answer
feedback
   $output = zen_get_products_discount_price_qty($new_products->fields['products_id']);
   $output =  substr($output,0,-2);
link|improve this answer
The function substr() is not the best solution. It didn't round the number! – Scoutman Sep 23 '11 at 14:28
@Scoutman value is prefixed with '$' hence it not gonna use it for mathematics operation probably just want to echo it out hence substr suits here . – beginner Sep 23 '11 at 14:36
feedback
printf('$%.02f', 8.0000); // $8.00
link|improve this answer
feedback

Or preg_replace :)

echo preg_replace("/^\$(\d+?)(?:.\d*)?$/", "\$$1.00", '$8.0000');

Output: $8.00

link|improve this answer
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:

$currencies->format($my_price);

Check includes/classes/currencies.php for reference.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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