我在我的刀片文件中的很多地方使用貨幣格式。我正在使用number_format來顯示正確的貨幣格式。所以它看起來像這樣貨幣格式laravel
<p>${{ number_format($row->nCashInitialBalance, 2) }}</p> // $1,123.00
<p>${{ number_format($row->nCashCalculatedBalance, 2) }}</p> // $300.50
<p>${{ number_format($row->nCashPaymentsReceived, 2) }}</p> // $2,341.15
<p>${{ number_format($row->nCardFinalBalance, 2)}}</p> // $234.10
,如果我不使用它,它看起來像這樣
<p>${{ $row->nCashInitialBalance }}</p> // $1123
<p>${{ $row->nCashCalculatedBalance }}</p> // $300.5
<p>${{ $row->nCashPaymentsReceived }}</p> // $2341.15
<p>${{ $row->nCardFinalBalance }}</p> // $234.1
也爲我在很多地方使用toFixed(2)
輸入字段。
#nDiscount_fixed").val() = parseFloat($("#nDiscount_fixed").val()).toFixed(2);
是不是有一個最簡單的方法來顯示所有的變量爲適當的貨幣格式?我現在使用number_format
和toFixed(2)
差不多50次了。
嘗試[money_format](HTTP ://php.net/money_format)! – Maraboc