Visa ett inlägg
Oläst 2013-07-09, 14:38 #4
nosnaj nosnaj är inte uppkopplad
Har WN som tidsfördriv
 
Reg.datum: Mar 2005
Inlägg: 1 012
nosnaj nosnaj är inte uppkopplad
Har WN som tidsfördriv
 
Reg.datum: Mar 2005
Inlägg: 1 012
För att inte få några decimaler:
$cart["content"][$key]["price_str"] = number_format($item["price"], 0, "", " ");
$cart["content"][$key]["price_total_str"] = number_format($item["price"]*$item["amount"], 0, "", " ");


Vill du ha 2 decimaler med punkt som avskiljare gör du i stil med:
$cart["content"][$key]["price_str"] = number_format($item["price"], 2, ".", " ");
$cart["content"][$key]["price_total_str"] = number_format($item["price"]*$item["amount"], 2, ".", " ");
nosnaj är inte uppkopplad   Svara med citatSvara med citat