一尘不染

如何在教义2中使用WHERE IN

php

我有以下代码,给我错误:

Message: Invalid parameter number: number of bound variables does not match number of tokens

码:

public function getCount($ids, $outcome)
{
    if (!is_array($ids)) {
        $ids = array($ids);
    }
    $qb = $this->getEntityManager()->createQueryBuilder();
    $qb->add('select', $qb->expr()->count('r.id'))
       ->add('from', '\My\Entity\Rating r');
    if ($outcome === 'wins') { 
        $qb->add('where', $qb->expr()->in('r.winner', array('?1')));
    }
    if ($outcome === 'fails') {
        $qb->add('where', $qb->expr()->in('r.loser', array('?1')));
    }
    $qb->setParameter(1, $ids);
    $query = $qb->getQuery();
    //die('q = ' . $qb);
    return $query->getSingleScalarResult();
}

数据(或$ ids):

Array
(
    [0] => 566
    [1] => 569
    [2] => 571
)

DQL结果:

q = SELECT COUNT(r.id) FROM \My\Entity\Rating r WHERE r.winner IN('?1')

阅读 229

收藏
2020-05-29

共1个答案

一尘不染

在研究此问题时,我发现了一些对于遇到此问题并寻求解决方案的人来说很重要的事情。

在原始帖子中,以下代码行:

$qb->add('where', $qb->expr()->in('r.winner', array('?1')));

将命名参数包装为数组会导致绑定参数编号问题。通过将其从数组包装中移除:

$qb->add('where', $qb->expr()->in('r.winner', '?1'));

此问题应得到解决。在以前版本的Doctrine中这可能是个问题,但在最新版本的2.0中已解决。

2020-05-29