Number Format Comma Script

Number Format Comma Script is used to convert a large number more readable by using commas between groups of thousands.

Demo :



Type Number  

Example :

Type Number : 2000000

Following code is number format comma script core if you need copy and use to your website.


<?php
  $number = " 2000000 ";
  $forment_number = number_format($number);
  echo $forment_number;
?>

The number_format() function is a great tool to use when formatting large integer or floating - point numbers.When invoked with a single argument, it rounds up the number if necessary and then inserts commas between every group of thousands. Note that the output of the function is a string, not a number, and so it cannot be used for further numeric manipulation.

Free Download Script :

If you need Number Format Comma Script click and download from following link.

Download




Content