也許有一個更簡單的方法來做到這一點。但是我想要顯示在試圖將當前表格輸入到數據庫表時已經找到的條目(URL)。所以在控制器中,我試圖傳遞兩個數組。一個是整個表格,另一個是與表格中的條目匹配的。所以用戶可以看到他們已經存在。Symfony陣列陣列
$repository = $this->getDoctrine()->getRepository('ObjectBundle:object');
foreach ($mylinks as &$value) {
$linkexist = $repository->findOneByUrl($value);
if (!$linkexist) {
$obj = new Object();
$obj->setUrl($value);
$obj->setLastupdate(new \DateTime('now'));
$em = $this->getDoctrine()->getManager();
$em->persist($obj);
$em->flush();
} else {
$notfound = new Object();
$notfound->setUrl($value);
}
}
$em = $this->getDoctrine()->getManager();
$listurls = $em->getRepository('ObjectBundle:Object')->findAll();
return $this->render('object/index.html.twig', array(
'objects' => $listurls,
));
我想包括$ NOTFOUND到一個單獨的陣列或解析它不改變對象實體。有任何想法嗎?
你的命名錶明你想要別的東西,至少對我來說。 '$ notfound'應該是'$ existing'或者至少'$ found'。 –