As per the title, how would one match on a regular expression with the Doctrine 2 query builder? Basically I'm trying to generate unique slugs.

Here is my current implementation. I generate the slug. I then check to see if there are any slugs in use like this slug. If there are, I will append a -{number} to the end of the slug where {number} is the lowest number not already in use.

$qb->select(array('partial o.{id, slug}'))
   ->from('Foo\Bar\Entity\Object', 'o')
   ->where($qb->expr()->like('o.slug', ':slug'));

$slug = new SlugNormalizer($text);
$qb->setParameter('slug', $slug->__toString().'-%');

The problem here is LIKE slug% could match foo-bar-1, foo-bar-2, AND foo-bar-not-the-same-slug. What would be cleaner is a regex looking for REGEX slug-(\d+) or something similar.

Any way to do this with the Doctrine 2 query builder?

link|improve this question

71% accept rate
feedback

1 Answer

Not tested (for MySQL):

$qb->where(new Doctrine\ORM\Query\Expr\Comparison(
    'o.slug', 'REGEXP', ':slug')
);
$qb->setParameter('slug', '^'.$slug->__toString().'-[[:digit:]]+$');
link|improve this answer
This does not work. The Doctrine\ORM\Query\Expr\Comparison class only has the following operators: const EQ = '='; const NEQ = '<>'; const LT = '<'; const LTE = '<='; const GT = '>'; const GTE = '>='; There is NO REGEXP option! Plus it's not a comparison operation ... why would it live there in the 1st place? – Mr-sk Jan 10 at 20:55
You're right, it does not work. But it's a comparison operation. Two operand, one operator between them, for me it is a comparison. – Maxence Jan 11 at 8:27
Ah, when you state it like that, maybe you're right. Could be a comparison op .. regardless, heh, it doesn't work. =[ – Mr-sk Jan 18 at 19:37
Similar question (with answer): stackoverflow.com/a/8816339/200443 – Maxence Jan 18 at 20:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.