**已关闭。**此问题需要debugging details。它目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答这个问题。
7天前关闭
Improve this question的
我有一个变量($TotalCountyTaxAmount),我想除以365来计算每日税率。在该示例中,变量值为1614.21。当我把变量除以天数(例如$TCA / $days),我得到0.2261,这是不正确的。正确答案应该是4.42。当我更改订单时(例如$days / $TCA)我得到的结果是365。
//calculate daily tax rate
$days = '365';
$TCA = str_replace("$", "", $TotalCountyTaxAmount); //strip dollar sign
echo ($days / $TCA);
echo ($TCA / $days);
字符串
TIA
我试过使用number_format(),但不起作用。我仅限于可用的功能here
1条答案
按热度按时间7y4bm7vi1#
我猜输出是正确的,你混淆了这两个操作(检查这个)。
0.2261
或更精确地说,0.2261168001685
是$days / $TCA
的结果,而$TCA / $days / $days
的结果是4.4224931506849
。也可以使用number_format化数字输出。