20

我有这个

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

$subtotal 的返回是"1234567.00" 如何修改$subtotal 的定义,让它变成这样"1,234,567.00"

4

4 回答 4

38

下面将输出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它将数字格式化为货币字符串

于 2013-07-22T05:47:12.413 回答
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.
}
于 2013-07-22T05:47:27.990 回答
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 没有,因此 money_format() 在 Windows 中是未定义的。

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

使用number_formathttp ://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
于 2013-07-22T05:55:32.043 回答
0

看起来money_format 现在已被弃用,因此即使您可以使用它,您也应该找到另一种格式化解决方案。

https://www.php.net/manual/en/function.money-format.php

于 2021-11-02T12:50:00.150 回答