Formatted price without currency symbol

Sometimes you need to display get formatted price (for example on custom grids in admin ) but without currency symbol.

There is simple code to display formatted price without currency symbol.

Mage::getModel('directory/currency')->format(
    $price, 
    array('display'=>Zend_Currency::NO_SYMBOL), 
    false
);

For displaying formatted price with currency symbol you just need to use this

Mage::helper('core')->formatPrice($price, true, false);

 

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.