在Smarty PHP中减去并保留小数

时间:2016-04-17 22:04:11

标签: php smarty prestashop

在Prestashop 1.6中我试图在我的网站的一部分中显示一个稳定数字(59)的减法结果与购物车的总数。 我的困难在于,当车的总数没有四舍五入时,我需要,即39.90,得到结果,即19.10,而不是20。

所以我已经尝试使用以下代码,但我仍然需要帮助来改进它并最终修复它。

{math equation=(59-$total) format="%.2f"}
{convertPrice price=(59-$total) format="%.2f"}
{convertPrice price=(59-$total)}

以上都不是我想要的...... 在此先感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

你可以尝试:

{$yourNumber|round:"2"}