Format price in the current locale and currency

前端 未结 7 1114
感情败类
感情败类 2021-01-30 03:32

I use :

$product->getPrice();

to get the unformatted price that I can calculate \"quantity X price\" with ajax.

I want to reformat

7条回答
  •  离开以前
    2021-01-30 03:51

    Unformatted and formatted:

    $price = $product->getPrice();
    $formatted = Mage::helper('core')->currency($price, true, false);
    

    Or use:

    Mage::helper('core')->formatPrice($price, true);
    

提交回复
热议问题