以当前区域设置和货币设置价格的格式
我使用 :
$product->getPrice();
得到无格式的价格,我可以用ajax计算“数量X价格”。
我想以当前区域设置和货币重新格式化总计。我该怎么做?
我使用 :
$product->getPrice();
得到无格式的价格,我可以用ajax计算“数量X价格”。
我想以当前区域设置和货币重新格式化总计。我该怎么做?
我认为谷歌本可以回答你的问题;-)请参阅 http://blog.chapagain.com.np/magento-format-price/。
你可以用
$formattedPrice = Mage::helper('core')->currency($finalPrice, true, false);
$formattedPrice = Mage::helper('core')->currency($_finalPrice,true,false);