在php中添加逗号为千位分隔符和浮点数

时间:2013-07-22 05:42:09

标签: php comma number-formatting

我有这个

$example = "1234567"
$subtotal =  number_format($example, 2, '.', '');

$小计的回报是"1234567.00" 如何修改$ subtotal的定义,使其像"1,234,567.00"

一样

3 个答案:

答案 0 :(得分:31)

下面会输出1,234,567.00

$example = "1234567";
$subtotal =  number_format($example, 2, '.', ',');
echo $subtotal;

语法

string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )

但我建议你使用money_format,它会将数字格式化为货币字符串

答案 1 :(得分:4)

您有很多选择,但money_format可以为您解决问题。

// Example:

$amount = '100000';
setlocale(LC_MONETARY, 'en_IN');
$amount = money_format('%!i', $amount);
echo $amount;

// Output:

"1,00,000.00"

请注意,money_format()仅在系统具有strfmon功能时定义。例如,Windows没有,因此在Windows中未定义。

最终编辑:这是一个适用于任何系统的纯PHP实现:

$amount = '10000034000';
$amount = moneyFormatIndia( $amount );
echo number_format($amount, 2, '.', '');

function moneyFormatIndia($num){
    $explrestunits = "" ;
    if(strlen($num)>3){
        $lastthree = substr($num, strlen($num)-3, strlen($num));
        $restunits = substr($num, 0, strlen($num)-3); // extracts the last three digits
        $restunits = (strlen($restunits)%2 == 1)?"0".$restunits:$restunits; // explodes the remaining digits in 2's formats, adds a zero in the beginning to maintain the 2's grouping.
        $expunit = str_split($restunits, 2);
        for($i=0; $i<sizeof($expunit); $i++){
            // creates each of the 2's group and adds a comma to the end
            if($i==0){
                $explrestunits .= (int)$expunit[$i].","; // if is first value , convert into integer
            }else{
                $explrestunits .= $expunit[$i].",";
            }
        }
        $thecash = $explrestunits.$lastthree;
    } else {
        $thecash = $num;
    }
    return $thecash; // writes the final format where $currency is the currency symbol.
}

答案 2 :(得分:3)

参考:http://php.net/manual/en/function.money-format.php

string money_format ( string $format , float $number )

例如:

// let's print the international format for the en_US locale
setlocale(LC_MONETARY, 'en_US');
echo money_format('%i', $number) . "\n";
// USD 1,234.56

注意:只有在系统具有strfmon功能时才会定义函数money_format()。例如,Windows没有,因此在Windows中未定义money_format()。

注意:区域设置的LC_MONETARY类别会影响此功能的行为。在使用此函数之前,请使用setlocale()设置相应的默认语言环境。

使用 number_format http://www.php.net/manual/en/function.number-format.php

string number_format ( float $number , int $decimals = 0 , string $dec_point = '.' , string $thousands_sep = ',' )

$number        = 123457;
$format_number = number_format($number, 2, '.', ',');
// 1,234.57