PHP   发布时间:2022-04-01  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了php – Doctrine setParameter和无效的参数号大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
经过多次尝试,我想我终于明白了文档.
然后,我需要你的帮助..我不明白为什么Doctrine告诉我这个错误:

这是我的代码:

$qb = $this->em->createQueryBuilder();
$qb->SELEct('m')
   ->from('Entities\Marque','m')
   ->leftJoin('m.magasin','ma')
   ->where('m.nom = :marque AND ma.nom LIKE :magasin')
   ->setParameter('marque',$marquE)
   ->setParameter('magasin','%'.$matchesnumber[1].'%');
$results = $qb->getQuery()->getArrayResult();

提前感谢您的回答.

解决方法

如果您不小心使用多个where(),这种情况也会发生在我身上.
$em    = $this->getEntitymanager();
$query = $em->createQueryBuilder()
    ->from('AppBundle:SomeEntity','s')
    ->SELEct('s')
    ->where('s.foo = :foo')
    ->where('s.bar = :bar') // <- HERE
    ->setParameter('foo','Foo Value')
    ->setParameter('bar','Bar Value');

应该:

$em    = $this->getEntitymanager();
$query = $em->createQueryBuilder()
    ->from('AppBundle:SomeEntity','s')
    ->SELEct('s')
    ->where('s.foo = :foo')
    ->andWhere('s.bar = :bar') // <- CHANGE TO andWhere()
    ->setParameter('foo','Bar Value');

希望这有助于某人.

大佬总结

以上是大佬教程为你收集整理的php – Doctrine setParameter和无效的参数号全部内容,希望文章能够帮你解决php – Doctrine setParameter和无效的参数号所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。