money_format is a PHP function that formats a number as a currency string.
money_format is a PHP function that formats a number as a currency string.
string money_format ( string $format , float $number )
It can also be combined with setlocale.
Examples
echo money_format('%.2n', 33); // Returns 33.00
echo money_format('%i', 33); // Returns 33.00
setlocale(LC_MONETARY, 'en_US');
echo money_format('%i', 33); // Returns USD 33.00