Magento: Price, formatted but without currency symbol

前端 未结 4 448
北海茫月
北海茫月 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:36

    You could use the directory/currency model:

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

提交回复
热议问题