如何从format_currency('-733.87')获得₹-733.87的确切值?

时间:2019-03-27 10:00:12

标签: php html

无论我传递给php中的format_currency(),我都需要确切的值。我通过了format_currency('-2,733.87'),它给出的答案正确为₹ -2,733.87。但是,如果我通过format_currency('-733.87'),它将给出₹ 0,733.87。我需要答案₹ -733.87。请为此提供帮助

1 个答案:

答案 0 :(得分:1)

在此处使用数字格式,
php:

echo number_format('-2733.87',2);
echo '<br>';
echo number_format('-733.87',2);die;

输出:

-2,733.87
-733.87

TEST
在这里,您可以连接货币符号