将数字转换为xx.xx百万格式? [英] Convert number into xx.xx million format?

查看:176
本文介绍了将数字转换为xx.xx百万格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有一个简单的方法来转换高数字,例如14120000转换为1412万格式的PHP吗?

我一直在查看number_format,但似乎并没有提供这个功能,也想到了sub_str把数字分开,但认为可能有更好的办法?

解决方案

试试这个, https://php.net/manual/en/function.number-format.php#89888 : p

$ $ p $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $
$ n =(0 + str_replace(,,,$ n));

//是这个数字吗?
if(!is_numeric($ n))返回false;

//现在过滤它;
if($ n> 1000000000000)return round(($ n / 1000000000000),2)。'trillion'; ($ n / 1000000000),2)。
elseif($ n> 1000000)return round(($ n / 1000000),2)。
elseif($ n> 1000)return round(($ n / 1000),2)。

return number_format($ n);
}

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

?>


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?

解决方案

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

?>

这篇关于将数字转换为xx.xx百万格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆