Magento - 获得“未格式化”的价格

时间:2011-07-17 22:55:40

标签: magento

如何获得未格式化的价格(没有货币且没有数千的分隔符)?

感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

如果你有产品实例,你可以随时

$product->getPrice();

然后根据需要格式化

答案 1 :(得分:1)

<?php echo number_format($_product->getFinalPrice(),2);?> 

这也应该有效!