Hallo!
// Ausgabe formatieren
$rechneranschaffung = 30000.0000000;
number_format($rechneranschaffung, 2);
echo $rechneranschaffung;
Ohne den dritten und vierten Parameter sollte es wohl ehr so aussehen:
30,000.00
$zahl = "30000.000000";
echo number_format($zahl, 2, "", "");
--> 30000.00
$zahl = "30000.000000";
echo number_format($zahl, 2, ",", "");
--> 30000,00
$zahl = "30000.000000";
echo number_format($zahl, 2, ",", "_");
--> 30_000,00
$zahl = "30000.000000";
echo number_format($zahl, 2, "/", "_");
--> 30_000/00
$zahl = "30000.1";
echo number_format($zahl, 2, "", "");
--> 30000.10
MfG, André Laugks