Francisco L
Francisco L

Reputation: 81

Show price with decimals but keeping the 0 (Prestashop)

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

Answers (1)

Matt Loye
Matt Loye

Reputation: 1311

Use plain PHP !

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

Upvotes: 1

Related Questions