如果我定义了以下类,
class Category {
/**
*
* @var integer $id
* @Column(name="id", type="integer",nullable=false)
* @Id
* @GeneratedValue(strategy="IDENTITY")
*/
protected $id;
/**
*
* @ManyToMany(targetEntity="Tag")
* @JoinColumn(onDelete="SET NULL")
*/
protected $tags;
}
我不应该通过以下方式获得与此类别相关联的所有标签:
$categoryTags = $category->getTags();
上面赋值后$ categoryTags中的对象属于Doctrine \ ORM \ PersistentCollection类型,而我希望它是一个数组。
我使用sql命令手动添加category_tag表中的关联值,但我可以看到它们是有效的。
我的Tags类看起来像这样:
class Tag extends Tag{
/**
*
* @var integer $id
* @Column(name="id", type="integer",nullable=false)
* @Id
* @GeneratedValue(strategy="IDENTITY")
*/
protected $id;
/**
* @Column(type="string",length=60,nullable=false)
* @var string
*/
protected $tag;
}
答案 0 :(得分:6)
Doctrine不返回关联实体集合的简单数组。相反,它返回Doctrine\Common\Collections\Collection
。
您可以像使用数组一样扩展Countable
,IteratorAggregate
和ArrayAccess
接口。
如果你真的需要一个数组(我想不出原因),你可以使用toArray()
方法。
请阅读文档以了解Doctrine不使用简单数组的原因