将xampp升级到7.1后,我现有的代码开始给我这个错误
'遇到非数字值......'。
从php 7.0升级到php 7.1后,此错误开始。这是检测到错误的行。
$totalRevenue += $orderResult['paid'];
这是完整的部分。
$totalRevenue = "";
while ($orderResult = $orderQuery->fetch_assoc()) {
$totalRevenue += $orderResult['paid'];
}
$ orderResult ['paid']变量是一个整数,例如3500。 这在升级之前运行良好,所有计算都是正确的。
答案 0 :(得分:3)
当前值是一个字符串。您正在尝试为其添加数字。
$totalRevenue = 0;