I have the following code, which tries to sort an array of Products by it's creation date:
private function sortProductsByDate(Product $a, Product $b)
{
if ($a->getCreated() == $b->getCreated()) {
return 0;
}
return ($a->getCreated() < $b->getCreated()) ? -1 : 1;
}
/**
* Get the most 4 recent items
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getMostRecentItems()
{
$userMostRecentItems = array();
$products = $this->getProducts();
usort($products, "sortProductsByDate");
foreach ($this->getProducts() as $product) {
ladybug_dump($product->getCreated());
}
$mostRecentItems = $this->products;
return $this->isLocked;
}
Why does this gives me this error:
Warning: usort() expects parameter 1 to be array, object given
Ideas?
I'm guessing
getProducts()
returns a\Doctrine\Common\Collections\Collection
(most probably anArrayCollection
). UseYou'll also want to use
and finally, use the
$products
array in yourforeach