📜  laravel reduce - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:47.403000             🧑  作者: Mango

代码示例2
$collection = collect([1, 2, 3]);

$total = $collection->reduce(function ($carry, $item) {
    return $carry + $item;
});

// 6

$total = $collection->reduce(function ($carry, $item) {
    return $carry + $item;
}, 4);

// 10   | where 4 is a initial value