function getDescriptionHtml($tpl, $p){
$out = "";
$pr = $p["product"];
if(Mage::getStoreConfig('featuredproducts/displayoptions/title') == 'description'){
$out .= "<ins><h4>{$pr->getName()}</h4></ins>";
}
$out .= "<span class=\"description\"".
(!Mage::getStoreConfig('featuredproducts/displayoptions/description') ?
"style=\"display:none;\""
:
""
)
.">{$p['description']}</span>";
$out .= "<ins><div>".
(Mage::getStoreConfig('featuredproducts/displayoptions/price') ?
"<span style=\"font-size:45px\">{$pr->getPrice()}</span>"
:
""
)
."".
(Mage::getStoreConfig('featuredproducts/displayoptions/bnb') ?
"<div><button style=\"postion:relative;margin-left:80px;margin-top:140px\" class=\"form-button\" onclick=\"setLocation('{$p["url"]}')\"><span>{$tpl->__('Buy Now')}</span></button></div>"
:
"")
."
</div></ins>";
return $out;
}
根据显示的代码,当我使用$ pr-&gt; getPrice()时,它的输出看起来像299.0000,但我希望它像299.00。我怎么能这样做?
答案 0 :(得分:43)
为什么不尝试一下......
Mage::helper('core')->currency($pr->getPrice());
它也为您提供货币符号。
答案 1 :(得分:20)
Mage::helper('core')->currency($_product->getFinalPrice(),true,false);
这是我在Magento 1.7.0.2中所做的
答案 2 :(得分:16)
"<span style=\"font-size:45px\">{" . number_format($pr->getPrice(), 2) . "}</span>"
答案 3 :(得分:2)
或
sprintf("%0.2f",$_product->getFinalPrice());
答案 4 :(得分:1)
使用“round”作为数字格式并不总是正常工作,具体取决于位置和货币格式:
<span style=\"font-size:45px\">{" . round($_product->getFinalPrice(),2) . "}</span>