web-dev-qa-db-ja.com

PHP通貨テキストなしでmoney_formatを表示

PHPでは、money_formatを使用して、通貨を表示せずに、または少なくとも省略形で表示せずにお金を表示することはできますか?

現在、私は使用しています:

$money = "1234.56";
setlocale("LC_ALL", "de_DE");
$money = money_format("%n", $money);
21
Frank Vilea

真剣に。それが旗です:

$money = money_format("%!n", $money);
46
cwallenpoole

number_format($ money)を試してください

http://php.net/manual/en/function.number-format.php

5
rackemup420
// this if for Malaysia  , you can check according to your locality

$number = new NumberFormatter($locale = 'ms_MS.utf8', NumberFormatter::DECIMAL);
    echo $nmuber->format($amount)."\n"; ## 20,00,00,00,000
// if this give error 
Class 'NumberFormatter' not found
// for this  you can do  you can do a
apt-get install php7.0-intl
0
Manmeet Khurana