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

新手上路,请多包涵

我有这个

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

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

原文由 Andrew Liu 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 499
2 个回答

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

原文由 Techie 发布,翻译遵循 CC BY-SA 3.0 许可协议

您有很多选择,但 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.
}

原文由 Padmanathan J 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏