PHPでは、currency_formatを使用して通貨を表示せずに、または少なくとも省略形で表示することはできますか?PHPは通貨テキストのないmoney_formatを表示します
現在、私が使用します。
$money = "1234.56";
setlocale("LC_ALL", "de_DE");
$money = money_format("%n", $money);
PHPでは、currency_formatを使用して通貨を表示せずに、または少なくとも省略形で表示することはできますか?PHPは通貨テキストのないmoney_formatを表示します
現在、私が使用します。
$money = "1234.56";
setlocale("LC_ALL", "de_DE");
$money = money_format("%n", $money);
!
真剣に。それはフラグです:
$money = money_format("%!n", $money);
// 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
おかげで、EURの€の代わりに使用するためのフラグもあります?? –
'$ money = money_format("€%!n "、$ money);'は私の環境で動作します。残念ながら、サーバーの構成によって異なります。 –