我正在查看php中的money_format函数,并对如何使其格式化我想要的方式感到困惑。我不希望美元在我的字符串前面,我想改变123将格式化为123.00
感谢
答案 0 :(得分:3)
使用此money_format("%!.2n", 123)
!在money_format
{{1}}
答案 1 :(得分:1)
你需要这样的东西
setlocale(LC_MONETARY, 'en_US');
$money = 123;
echo money_format( '%!#4.2i', $money );
解释格式字符串:
答案 2 :(得分:0)
尝试number_format? http://php.net/manual/en/function.number-format.php
答案 3 :(得分:0)