Format Number With Two Decimal Places and Comma Using PHP
Submitted by argie on Wednesday, February 26, 2014 - 08:27.
This tutorial will help you on how to display the number in price format using php. The feature of this tutorial is it allow you to display the number with two decimal point and put comma when the number of digits is four. To understand this tutorial follow the steps bellow.
Step 1 : Creating our function script that convert the number in price format
Copy the code bellow and save it as “index.php”.- <?php
- function formatMoney($number, $fractional=false) {
- if ($fractional) {
- }
- while (true) {
- if ($replaced != $number) {
- $number = $replaced;
- } else {
- break;
- }
- }
- return $number;
- }
- ?>
- </php
- <h2>Step: 2 Displaying our number in price</h2>
- The code bellow will give us the formatted number. Copy and paste it under our function code in “index.php”.
- <php>
- <?php
- $tobeformated=1000000;
- echo formatMoney($tobeformated, true);
- ?>
Summary
The code bellow will display the summary of step 1 and step 2.- <?php
- function formatMoney($number, $fractional=false) {
- if ($fractional) {
- }
- while (true) {
- if ($replaced != $number) {
- $number = $replaced;
- } else {
- break;
- }
- }
- return $number;
- }
- $tobeformated=1000000;
- echo formatMoney($tobeformated, true);
- ?>
Add new comment
- 98 views