如何在删除元素之前备份 ArrayCollection?
How to backup an ArrayCollection before removing element?
所以我想存储 ArrayCollection 值,删除它然后在另一个实体中重用它。
但似乎该值是通过引用传递的,因此当它被取消设置时,存储的值也被取消设置。
$children = $role->getChildren();
var_dump(count($children)); // int(1)
$role->removeAllChildren();
var_dump(count($children)); // int(0)
/** **/
/**
* @return Role
*/
public function removeAllChildren()
{
foreach ($this->children as $child) {
$this->removeChild($child);
}
return $this;
}
/**
* @param Role $child
*
* @return Role
*/
public function removeChild(Role $child)
{
if ($this->hasChild($child)) {
$this->children->removeElement($child);
// this calls unset($this->elements[$key]);
}
return $this;
}
那么有没有办法在删除之前存储 arrayCollection 值?
顺便说一下,我在使用 Symfony 3.4。
ArrayCollection 是一个对象,您可以对该对象使用简单的 $chilrenCopy = clone $obj->getChildren();
,这将复制该对象并分配给新的引用。也有可能使用名为 Memento
的设计模式
所以我想存储 ArrayCollection 值,删除它然后在另一个实体中重用它。 但似乎该值是通过引用传递的,因此当它被取消设置时,存储的值也被取消设置。
$children = $role->getChildren();
var_dump(count($children)); // int(1)
$role->removeAllChildren();
var_dump(count($children)); // int(0)
/** **/
/**
* @return Role
*/
public function removeAllChildren()
{
foreach ($this->children as $child) {
$this->removeChild($child);
}
return $this;
}
/**
* @param Role $child
*
* @return Role
*/
public function removeChild(Role $child)
{
if ($this->hasChild($child)) {
$this->children->removeElement($child);
// this calls unset($this->elements[$key]);
}
return $this;
}
那么有没有办法在删除之前存储 arrayCollection 值?
顺便说一下,我在使用 Symfony 3.4。
ArrayCollection 是一个对象,您可以对该对象使用简单的 $chilrenCopy = clone $obj->getChildren();
,这将复制该对象并分配给新的引用。也有可能使用名为 Memento