显示带小数的价格,但保持0(Prestashop)

时间:2018-01-18 15:51:23

标签: prestashop

我使用代码

获取.php文件中的价格
Tools::ps_round((string)$prod->getPriceWithoutReduct(), 2);

我举个例子: 59.4 但是我需要 59.40 我该如何实现呢?

由于

1 个答案:

答案 0 :(得分:1)

使用普通的PHP!

number_format(Tools::ps_round((string)$prod->getPriceWithoutReduct(), 2), 2);