gpt4 book ai didi

php - Doctrine2 多对多不返回数组

转载 作者:行者123 更新时间:2023-12-03 22:55:53 26 4
gpt4 key购买 nike

如果我定义了以下类,

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表中手动添加了关联值,但我可以看到它们是有效的。

我的标签类如下所示:

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;

}

最佳答案

Doctrine 不返回关联实体集合的简单数组。相反,它返回 Doctrine\Common\Collections\Collection 的实现。

您可以像使用数组一样使用它们,因为它们扩展了 Countable , IteratorAggregateArrayAccess接口(interface)。

如果您真的需要一个数组(我想不出原因),您可以使用toArray() 方法。

请阅读文档以了解为什么 Doctrine 不使用简单数组

关于php - Doctrine2 多对多不返回数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11279132/

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