22

我已经看到关于这个问题的各种帖子,所以我知道可能存在一些答案。然而,在阅读了这些之后,我并没有变得更聪明。

我有一个如下所示的数组。

[0] => Array
    (
        [id] => 95659865986
        [invoiceNumber] => 6374324
        [invoiceTitle] => Monthly
        [invoiceStatus] => Paid
        [accountId] => 6235218753
        [totalExVat] => 158.95
        [dateCreated] => 1 Apr 2012
        [vatAmount] => 20.00
    )

我想做的就是vatAmount对这个数组的值进行数组求和。

由于以下似乎没有做太多。

(array_sum($account_invoices['vatAmount'])
4

10 回答 10

72

如果你有 PHP 5.5+,你可以在不循环或使用回调的情况下做到这一点(因为函数调用相对昂贵)......只需使用:

$sum = array_sum(array_column($account_invoices, 'vatAmount'));
于 2014-08-29T00:39:10.373 回答
26

我会使用 array_map 将数组减少到只需要的内容。请记住,这仅适用于 PHP 5.3 及更高版本。

$total_vat = array_sum( array_map(
                 function($element){
                     return $element['vatAmount'];
                 }, 
             $account_invoices));
于 2012-10-11T11:50:46.157 回答
19

只是一种方法:

$sum = 0;

foreach($account_invoices as $num => $values) {
    $sum += $values[ 'vatAmount' ];
}
于 2012-10-11T11:45:27.567 回答
9

您可以使用array_mapfirst 来收集vatAmout价值。

$sum = array_sum(array_map(function($var) {
  return $var['vatAmout'];
}, $account_invoices));
于 2012-10-11T11:51:12.000 回答
4

一种使用 PHP 5.3+ 匿名函数的方法

$account_invoices = array(
    0 => array(
        'id' => '95659865986',
        'invoiceNumber' => '6374324',
        'invoiceTitle' => 'Monthly',
        'invoiceStatus' => 'Paid',
        'accountId' => '6235218753',
        'totalExVat' => 158.95,
        'dateCreated' => '1 Apr 2012',
        'vatAmount' => 20.00
    ),
    1 => array(
        'id' => '95659865987',
        'invoiceNumber' => '6374325',
        'invoiceTitle' => 'Monthly',
        'invoiceStatus' => 'Paid',
        'accountId' => '6235218753',
        'totalExVat' => 208.95,
        'dateCreated' => '1 May 2012',
        'vatAmount' => 25.00
    ),
);


$sumDetail = 'vatAmount';
$totalVAT = array_reduce($account_invoices,
           function($runningTotal, $record) use($sumDetail) {
               $runningTotal += $record[$sumDetail];
               return $runningTotal;
           },
           0
);
echo $totalVAT;
于 2012-10-11T11:55:21.480 回答
4

您可以使用array_map()并首先选择vatAmount列来执行此操作:

$totalVatAmount = array_sum(array_map(function($account_invoices) { 
    return $account_invoices['vatAmount']; 
}, $account_invoices));

当然,这在内部执行了一个双循环;只是您在代码中看不到它。如果你使用array_reduce()那么你可以摆脱一个循环:

$totalVatAmount = array_reduce($account_invoices,
     function($totalAmount, $item) {
         $totalAmount += $item['vatAmount'];
            return $totalAmount;
     },
   0
);

但是,如果速度是唯一的兴趣,您应该使用foreach. 因为没有用于计算最终总和的函数调用。此解决方案比其他解决方案更快。

$totalVatAmount = 0;
foreach ($account_invoices as $item) {
    $totalVatAmount += $item['vatAmount'];
}
于 2017-03-06T17:05:55.683 回答
1

您不能直接使用 来执行此操作array_sum,这会将数组中的所有内容相加。

你可以用一个循环来做到这一点:

$sum = 0;
foreach($items as $item)
    $sum += $item['vatAmount'];

或者您可以过滤数组(在这种情况下它不是很方便,但是如果您必须从每个项目中计算 S&H 费用加上增值税加...,然后求和...):

// Input: an array (element #n of array of arrays), output: VAT field
function getVAT($item)
{
    return $item['vatAmount'];
}

// Array with all VATs
$vats = array_map('getVAT', $items);

$sum = array_sum($vats);
于 2012-10-11T11:49:57.920 回答
1

你也可以这样做(如果你喜欢 array_sum 函数):

foreach($account_invoices as $num => $values) {
    $vatAmount[] = $values[ 'vatAmount' ];
}

$Total = array_sum($vatAmount);
于 2012-10-11T11:51:57.287 回答
1

使用 array_reduce 的另一种方法:

$vatMount = array_reduce($account_invoices, function($total, $value) {
    return $total + $value['vatAmount'];
});
于 2014-12-02T10:28:53.143 回答
1

array_sum_multidimensional 辅助函数

if (!function_exists('array_sum_multidimensional')) {
    /**
     * returns the sum of a element from an array of arrays
     */

    function array_sum_multidimensional(array $array, $elementKey){

        $sum = 0;

        foreach($array as $key => $value) {
            $sum += $value[ $elementKey ];
        }

        return $sum;
    }
}
于 2019-12-23T12:27:41.533 回答