简体   繁体   English

我如何将此行限制为小数点后 2 位 Magento 1.9

[英]how do i limit this line to 2 decimal places Magento 1.9

On bundled options ie radio checkbox select在捆绑选项上,即单选复选框 select

i have a line of code我有一行代码

echo "<span class='bundleinstockprice'> +$".$_selection->getFinalPrice(). " </span>" ;

and this shows correctly on checkbox and select files but for radio it display.0000 after price这在复选框和 select 文件上正确显示,但对于收音机,它在价格后显示.0000

You can use the currency function of the core helper:可以使用核心助手的币种function:

echo "<span class='bundleinstockprice'> +" . Mage::helper('core')->currency($_selection->getFinalPrice(), true, false)
. "</span>" ;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM