Magento: Price, formatted but without currency symbol

前端 未结 4 418
北海茫月
北海茫月 2020-12-20 14:38

I want to get a formatted price but without the currency symbol and I want use only standard functionality of magento!

$product->getFinalPrice(); => 19         


        
4条回答
  •  有刺的猬
    2020-12-20 15:24

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

提交回复
热议问题