我有以下代码:
$items = array();
foreach($following as $storeOwner)
{
array_push($items, $productRepository->mostRecentItem($storeOwner->getId(), 5));
}
我正在尝试附加结果
$productRepository->mostRecentItem($storeOwner->getId(), 5)
到$items
. 我该怎么做?为什么上面的代码不起作用?