次のコードがあります。
$items = array();
foreach($following as $storeOwner)
{
array_push($items, $productRepository->mostRecentItem($storeOwner->getId(), 5));
}
の結果を追加しようとしています
$productRepository->mostRecentItem($storeOwner->getId(), 5)
に$items
。どうすればいいですか?上記のコードが機能しないのはなぜですか?