我正在尝试在我的PHP程序中进行一些除法,并且由于某种原因,当它不应该时,结果为零。 以下是我的代码:
print("Historic Total: '$histoicTotal' Valid weeks: '$numValidWeeks'");
$historicAvg = $historicTotal/$numValidWeeks;
print(($historicTotal)/($numValidWeeks));
print(30/1);
$totalAvg = (($historicAvg + $avg)/2);
print("Havg = '$historicAvg' + Avg '$avg' ");
print($totalAvg);
输出为Historic Total: '30' Valid weeks: '1'030Havg = '0' + Avg '' 0
答案 0 :(得分:2)
有一个拼写错误:$historicTotal
在中间缺少“r”。与第二行的变量名称进行比较:{{1}}。