Show Output
Sets the Number of Decimal Digits in PHP
"; // Outputs: 1,235 echo number_format("1234.99", 1)."
"; // Outputs: 1,235.0 echo number_format("1234.99", 2); // Outputs: 1,234.99 ?>