2014-03-29 70 views
1

編輯demans的許多評論我顯示的要求,所有的他的意見如何控制

$em = $this->container->get('doctrine')->getManager(); 
$valider = $em->find('PublishDemandsBundle:Demands', $id); 
$comments = $em->getRepository('PublishDemandsBundle:Pcomment')->findByDemands($valider); 

我需要編輯的所有意見表意見見過custoom:$意見,我怎樣才能使這個編輯需求的所有註釋:

​​

回答

1

有了一個循環:

foreach ($comments as $comment) { 
    $comment->setSeen(true); 
} 
$em->flush();