我有这个函数迭代一个集合并为每个函数之外的变量$totalSaleValue
添加一些值:
public function totalSaleValue()
{
$totalSaleValue = 0;
$this->products->each(function ($item, $key) use ($totalSaleValue){
if (!empty($item->sale_price)) {
$totalSaleValue += $item->sale_price * $item->pivot->stock;
}
});
return $totalSaleValue;
}
但始终$totalSaleValue
返回0
。
有什么问题?
答案 0 :(得分:4)
通过引用传递变量:
$this->products->each(function ($item, $key) use (&$totalSaleValue) {