Show Output
Format a Number with Grouped Thousands in PHP
"; // Outputs: 1,234,000 echo number_format("1234000", 2); // Outputs: 1,234,000.00 ?>