我有几个网址查询,例如:
/page?type=train&category=others&location=germany
/page?type=car&category=others
我获取它们并将它们放在我想用。过滤我的数据库请求的变量中。
这就是我的尝试:
$item = $this->getDoctrine()
->getRepository('AppBundle:Item')
->findBy(array(
'type' => $type,
'category' => $category,
'location' => $location
));
但是你可以想象,如果一个或多个变量是空的,我就没有结果......
我想查询数据库中的所有项目并按变量过滤它们,我该如何处理?
感谢您的帮助! :)
答案 0 :(得分:4)
请记住,您不必在querybuilder中创建findBy-Criteria。相反,您可以使用php array_filter()
创建它,它将删除所有空值:
$criteria = array_filter(array(
'type' => 'search_type',
'category' => null,
'location' => 'search_location'
));
$item = $this->getDoctrine()
->getRepository('AppBundle:Item')
->findBy($criteria);