Skip to content

Instantly share code, notes, and snippets.

@oste
Created April 30, 2013 20:36
Show Gist options
  • Save oste/5491743 to your computer and use it in GitHub Desktop.
Save oste/5491743 to your computer and use it in GitHub Desktop.
multiple params same name
$qb->andWhere($qb->expr()->orX(
$qb->expr()->like('m.extension', '?1'),
$qb->expr()->like('m.name', '?1')
));
$qb->setParameters([ 1 => "%$value%"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment