我想用他所有的关系复制一份记录。
我正在尝试:
$o = Doctrine::getTable('Table')->Find(x);
$copy = $object->copy();
$relations = $o->getRelations();
foreach ($relations as $name => $relation) {
$copy->$relation = $object->$relation->copy();
}
$copy->save();
此代码不起作用,但我认为它已经开始了。
答案 0 :(得分:5)
我永远无法让深层复制功能正常运行。
我手动为我的某个模型编写了深层复制功能
public function copyAndSave ()
{
$filters = array('id', 'created');
$survey = $this->copy();
$survey->Survey_Entries = new Doctrine_Collection("Survey_Model_Entry");
$survey->Assignment_Assignments = new Doctrine_Collection("Assignment_Model_Assignment");
$survey->Survey_Questions = new Doctrine_Collection("Survey_Model_Question");
$survey->save();
foreach ($this->Survey_Questions as $question)
{
$answers = $question->Survey_Answers;
$newQuestion = $question->copy();
$newQuestion->survey_surveys_id = $survey->id;
$newQuestion->save();
$newAnswers = new Doctrine_Collection("Survey_Model_Answer");
foreach($answers as $answer)
{
$answer = $answer->copy();
$answer->save();
$answer->survey_questions_id = $newQuestion->id;
$newAnswers->add($answer);
}
$newQuestion->Survey_Answers = $newAnswers;
$survey->Survey_Questions->add($newQuestion);
}
return $survey->save();
}
答案 1 :(得分:3)
答案 2 :(得分:2)
对不起,如果我复活这个帖子......
我发现自己最近在寻找一个解决方案,我需要复制一条记录并保留原始的引用。深层复制$record->copy(true)
复制引用,这对我没有好处。这是我的解决方案:
$record = Doctrine_Core::getTable('Foo')->find(1);
$copy = $record->copy();
foreach($record->getTable()->getRelations() as $relation) {
if ($relation instanceof Doctrine_Relation_Association) {
$ids = array();
foreach ($relation->fetchRelatedFor($record) as $r) {
$ids[] = $r->getId();
}
$copy->link($relation->getAlias(), $ids);
}
}
if ($copy->isValid()) {
$copy->save();
}
希望这会有所帮助:)
答案 3 :(得分:0)
这就是我的方法,但需要一些修复。
$table = $entidade->getTable();
$relations = $table->getRelations();
foreach($relations as $relation => $data) {
try {
$entity->loadReference($relation);
} catch(Exception $e) {
die($e->getMessage());
}
}
答案 4 :(得分:0)
我正在使用Symfony1.4.1并使用Doctrine 1.2.1(我认为)。
当我找到一个已经存在的函数时,我一直在努力创建一个完成上述所有功能的函数。
在任何函数中尝试此操作并查看结果:
$tmp=$this->toArray(TRUE);
var_dump($tmp);
$this->refreshRelated();
$tmp=$this->toArray();
var_dump($tmp);
$tmp=$this->toArray(TRUE);
var_dump($tmp);
exit();
我将尝试两种不同的东西:
将$ this-> refreshRelated()放入我所有模型对象的构造函数中。 B /编写一个函数,它接受一个描述我想要填充的对象图的数组。调用函数refereshRelatedGraph($ objectGraphArray)。使用数组的正确结构(在每个级别具有所有适当的关系名称),我可以控制哪些关系被填充,哪些不被填充。其中一个用途是仅填充儿童,而不是父母关系。另一个是当ERD / Schema / ObjectGraph有一个由多个对象“拥有”的元素时(多对多,我有其他特殊情况),我可以控制关系的哪一方得到预备(非懒惰) )加载。