Reputation: 81
I get the price in a .php file with the code:
Tools::ps_round((string)$prod->getPriceWithoutReduct(), 2);
and I get for example: 59.4 but I need 59.40 how can I achieve it?
Thanks
Upvotes: 0
Views: 228
Reputation: 1311
Use plain PHP !
number_format(Tools::ps_round((string)$prod->getPriceWithoutReduct(), 2), 2);
Upvotes: 1