gpt4 book ai didi

php - 如何在 querybuilder where 子句中使用子字符串

转载 作者:行者123 更新时间:2023-12-04 15:46:01 24 4
gpt4 key购买 nike

如何在查询生成器中使用子字符串:

我试过这个:

$qb->andWhere($qb->expr()->substring('t0.country',1,2) != 'FR');

...

但我有这个异常(exception):

Warning: get_class() expects parameter 1 to be object, boolean given

最佳答案

您试图在 PHP 中使用 != 运算符,但它不起作用。相反,将条件包装在 neq 函数中,该函数测试不等式。

$qb->andWhere(
$qb->expr()->neq(
$qb->expr()->substring('t0.country', 1, 2),
$qb->expr()->literal('FR')
)
);

请参阅此处的文档:https://www.doctrine-project.org/projects/doctrine-orm/en/2.6/reference/query-builder.html#the-expr-class

关于php - 如何在 querybuilder where 子句中使用子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55750019/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com