在Doctrine文档中似乎没有提到如何检查一个实体是否与另一个实体存在关系:
http://www.doctrine-project.org/docs/orm/2.0/en/reference/working-with-associations.html
在教义1.x中有一种称为存在的方法,可以在一个实体上调用以检查:
在Doctrine 2.0中,这是我所倾向于做的.其他人使用什么技术?
<?PHP class Group { private $id; protected $name; protected $users; public function __construct() { $this->colorgroups = new ArrayCollection(); } public function hasUsers() { return count($this->users) > 0; } }
嗯 – 我实际上偶然发现了正确的答案,同时查看了ArrayCollection类.你应该使用’isEmpty’方法.
原文链接:https://www.f2er.com/php/131506.html/** * Checks whether the collection is empty. * * Note: This is preferrable over count() == 0. * * @return boolean TRUE if the collection is empty,FALSE otherwise. */ public function isEmpty() { return ! $this->_elements; }
所以从我的例子
public function hasUsers() { return !$this->users->isEmpty(); }