0

我有一个函数 getData 返回:

    array:4 [▼
  0 => array:1 [▼
    0 => "5689.01"
  ]
  1 => array:1 [▼
    0 => "5689.01"

  ]
  2 => array:1 [▼
    0 => "0.0"
  ]
  3 => array:1 [▼
    0 => "5665.11"
   ]
]

我需要计算每次触发调用时返回的值的行数(这次是 4,如上所述),并返回列出的所有结果的总和。

 $rows = $this->get('app')->getData();

 if($rows) {
        foreach ($rows as $row) {
            $sumOfAll = 0;
            $total = count($rows);
            $sumOfAll += array_sum(array($row[0] * $total));

            dump($sumOfAll);die;
    }
}

我总是得到一个错误的总和,在这种情况下是 22756.04。

4

2 回答 2

4

使用 array_sum 和 array_column 获取值并将它们求和。
然后使用 count() 获取计数。

$sum = array_sum(array_column($arr, 0));
$count = count($arr);

echo "count is ". $count . " And sum is " . $sum;

https://3v4l.org/HFbgc

于 2019-01-25T10:38:02.173 回答
0

要修复总和值,您需要将$sumOfAll变量移出foreach

从此更改您的代码:

foreach ($rows as $row) {
    $sumOfAll = 0;
    $total = count($rows);
    $sumOfAll += array_sum(array($row[6] * $total));

    dump($sumOfAll);die;
}

对此:

$sumOfAll = 0;
foreach ($rows as $row) {
    $total = count($rows);
    $sumOfAll += array_sum(array($row[6] * $total));
}
dump($sumOfAll);die;
于 2019-01-25T10:35:27.710 回答