用小数显示价格但保留 0 (Prestashop)
Show price with decimals but keeping the 0 (Prestashop)
我在 .php 文件中获取价格,代码为:
Tools::ps_round((string)$prod->getPriceWithoutReduct(), 2);
我得到例如:59.4 但我需要 59.40 我怎样才能实现它?
谢谢
使用普通 PHP !
number_format(Tools::ps_round((string)$prod->getPriceWithoutReduct(), 2), 2);
我在 .php 文件中获取价格,代码为:
Tools::ps_round((string)$prod->getPriceWithoutReduct(), 2);
我得到例如:59.4 但我需要 59.40 我怎样才能实现它?
谢谢
使用普通 PHP !
number_format(Tools::ps_round((string)$prod->getPriceWithoutReduct(), 2), 2);