Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert number into xx.xx million format? [closed]

Is there a simple way to convert a high number e.g. 14120000 into 14.12 million format with PHP?

I've been looking at number_format but it doesn't seem to offer this function, also thought about sub_str to separate the digits out, but thought there might be a better way?

like image 263
Chris Avatar asked Apr 19 '12 04:04

Chris


1 Answers

Try this from, https://php.net/manual/en/function.number-format.php#89888:

<?php 
    function nice_number($n) {
        // first strip any formatting;
        $n = (0+str_replace(",", "", $n));

        // is this a number?
        if (!is_numeric($n)) return false;

        // now filter it;
        if ($n > 1000000000000) return round(($n/1000000000000), 2).' trillion';
        elseif ($n > 1000000000) return round(($n/1000000000), 2).' billion';
        elseif ($n > 1000000) return round(($n/1000000), 2).' million';
        elseif ($n > 1000) return round(($n/1000), 2).' thousand';

        return number_format($n);
    }

echo nice_number('14120000'); //14.12 million

?>
like image 104
Lawrence Cherone Avatar answered Nov 14 '22 01:11

Lawrence Cherone