web-dev-qa-db-ja.com

PHPで3桁ごとの区切り記号および浮動小数点ドットとしてコンマを追加します

私はこれを持っています

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

$ subtotalの戻り値は"1234567.00" $ subtotalの定義を変更するには、次のようにします"1,234,567.00"

15
Andrew Liu

以下は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 を使用することをお勧めします

31
Techie

あなたには多くのオプションがありますが、 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.
}
_
4
Nathan Srivi

参照: 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

注:money_format()関数は、システムにstrfmon機能がある場合にのみ定義されます。たとえば、Windowsではサポートされていないため、Windowsではmoney_format()は未定義です。

注:ロケール設定の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
3
Prasanth Bendra