gpt4 book ai didi

php - money_format - 负数

转载 作者:行者123 更新时间:2023-12-02 22:30:01 26 4
gpt4 key购买 nike

我得到了以下代码

#   On va convertir en somme monétaire
# We convert our integer into a way to read money
$Vars['Income'] = money_format('%.2n', $Income);
$Vars['Spending'] = money_format('%.2n', $Spending);

# On va calculer ce qui reste à dépenser
# We do the math to know how much we can spend until the end of the month
$Vars['Remaining'] = money_format('%.2n', $Income - $Spending);

如果 $Income - $Spending 为负(小于 0),则收入低于支出。好吧。我正在使用我的语言环境,法语(加拿大),负数的结果是 (X,XX $)。

没有 - 符号对我来说毫无意义,所以我希望能够输出带有 -0.00$ 而不是 (0.00$) 的数字。

例如我的收入是 75.00 美元,支出是 100.00 美元。我多花了 25 美元,所以剩余的钱将输出 (25.00 美元),但我想要 -25.00 美元。

我确实尝试添加 ( 或 + 但我不明白。

谢谢

更新:Picture

enter image description here

最佳答案

money_format 的格式字符串有点困惑。你想要的是:

money_format('%+.2n', $Income - $Spending);

关于php - money_format - 负数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12429397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com