将数字转换为xx.xx百万格式?

时间:2012-04-19 04:36:36

标签: php numbers format

是否有一种转换高数字的简单方法,例如使用PHP将14120000转换为1412万格式?

我一直在看number_format,但它似乎没有提供这个功能,还想到了sub_str将数字分开,但是认为可能有更好的方法?

1 个答案:

答案 0 :(得分:33)

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

?>