You are here: C97net • 5.01 General Functions
Return formatted number
function num_format ($number, $comma = 0, $currency = 0)
Calling this function will format a number $number.
$comma is number of decimal.
$currency when set to true or any values will return the number formatted according to currency format set in configuration.
Example 1
<?php
require './includes/user_init.php';
$num = 12345.6789;
echo 'Decimal: '.num_format ($num, 2).'<br />'; // 12,345.68
echo 'Currency: '.num_format ($num, 1, 1); // $12,345.68
?>
There is no comment. Why not be the first?