PHP show money_format without currency text

2020-05-30 08:47发布

问题:

In PHP, is it possible to use money_format to display money without showing the currency or at least showing it in an abbreviated form?

Currently, I use:

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

回答1:

!

Seriously. that's the flag:

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


回答2:

try number_format($money)

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



回答3:

// 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