私が使う :
$product->getPrice();
ajaxで「数量X価格」を計算できるフォーマットされていない価格を取得します。
現在のロケールと通貨で合計を再フォーマットしたい。どうやってやるの?
Googleがあなたの質問に答えたと思う;-) http://blog.chapagain.com.np/magento-format-price/ をご覧ください。
あなたはそれをすることができます
$formattedPrice = Mage::helper('core')->currency($finalPrice, true, false);
$formattedPrice = Mage::helper('core')->currency($_finalPrice,true,false);
現在の通貨とは別の通貨で価格をフォーマットするには:
Mage::app()->getLocale()->currency('EUR')->toCurrency($price);
製品リストの価格をフォーマットするためのこのコードによって
echo Mage::helper('core')->currency($_product->getPrice());
これを試して:
<?php echo Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol(); ?>
未フォーマットおよびフォーマット済み:
$price = $product->getPrice();
$formatted = Mage::helper('core')->currency($price, true, false);
または使用:
Mage::helper('core')->formatPrice($price, true);