9

有没有一种简单的方法可以使用 PHP 将高数字(例如 14120000)转换为 1412 万格式?

我一直在看 number_format 但它似乎没有提供此功能,还考虑过 sub_str 将数字分开,但认为可能有更好的方法?

4

1 回答 1

47

从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

?>
于 2012-04-19T04:40:49.753 回答