Magento: Price, formatted but without currency symbol

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

    Just below one line code is needed for that. Try this

    Mage::helper('core')->currency($_yourPriceToFormat, false, false);
    

提交回复
热议问题