开发者

Magento - get the "not formatted" prices

开发者 https://www.devze.com 2023-03-21 10:23 出处:网络
how can I get the not formatted prices (without currency and without the separator of thousands) ? Thanks for开发者_如何学编程 help.If you have the product instance you can always do

how can I get the not formatted prices (without currency and without the separator of thousands) ?

Thanks for开发者_如何学编程 help.


If you have the product instance you can always do

$product->getPrice();

and then format it as you want


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

That should work too!

0

精彩评论

暂无评论...
验证码 换一张
取 消