我有这个
$example = "1234567"
$subtotal = number_format($example, 2, '.', '');
\(subtotal 的返回是 `"1234567.00"` 如何修改 \)subtotal 的定义,让它变成这样 "1,234,567.00"
原文由 Andrew Liu 发布,翻译遵循 CC BY-SA 4.0 许可协议
我有这个
$example = "1234567"
$subtotal = number_format($example, 2, '.', '');
\(subtotal 的返回是 `"1234567.00"` 如何修改 \)subtotal 的定义,让它变成这样 "1,234,567.00"
原文由 Andrew Liu 发布,翻译遵循 CC BY-SA 4.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 许可协议
2 回答3.1k 阅读✓ 已解决
1 回答1.4k 阅读✓ 已解决
1 回答1k 阅读✓ 已解决
1 回答1.3k 阅读✓ 已解决
3 回答1.2k 阅读
2 回答1.2k 阅读
1 回答1.2k 阅读
下面将输出
1,234,567.00
句法
但我建议您使用 money_format 它将数字格式化为货币字符串