gpt4 book ai didi

php - "usort"一个教义\通用\集合\数组集合?

转载 作者:IT王子 更新时间:2023-10-29 00:48:46 28 4
gpt4 key购买 nike

在各种情况下,我需要根据对象中的属性对 Doctrine\Common\Collections\ArrayCollection 进行排序。在没有找到立即执行此操作的方法的情况下,我这样做了:

// $collection instanceof Doctrine\Common\Collections\ArrayCollection
$array = $collection->getValues();
usort($array, function($a, $b){
return ($a->getProperty() < $b->getProperty()) ? -1 : 1 ;
});

$collection->clear();
foreach ($array as $item) {
$collection->add($item);
}

当您必须将所有内容复制到 native PHP 数组并返回时,我认为这不是最好的方法。我想知道是否有更好的方法来“排序”Doctrine\Common\Collections\ArrayCollection。我错过了任何文档吗?

最佳答案

要对现有的集合进行排序,您正在寻找返回 ArrayIterator 的 ArrayCollection::getIterator() 方法。示例:

$iterator = $collection->getIterator();
$iterator->uasort(function ($a, $b) {
return ($a->getPropery() < $b->getProperty()) ? -1 : 1;
});
$collection = new ArrayCollection(iterator_to_array($iterator));

最简单的方法是让 存储库 中的查询处理您的排序。

假设您有一个 SuperEntity,它与 Category 实体之间存在多对多关系。

然后例如创建这样的存储库方法:

// Vendor/YourBundle/Entity/SuperEntityRepository.php

public function findByCategoryAndOrderByName($category)
{
return $this->createQueryBuilder('e')
->where('e.category = :category')
->setParameter('category', $category)
->orderBy('e.name', 'ASC')
->getQuery()
->getResult()
;
}

... 使排序变得非常容易。

希望对您有所帮助。

关于php - "usort"一个教义\通用\集合\数组集合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16705425/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com