gpt4 book ai didi

php - 基于条件附加 ->where() 子句

转载 作者:行者123 更新时间:2023-11-28 23:27:59 25 4
gpt4 key购买 nike

我想根据特定条件将 where 子句附加到查询,问题是我检查它是否从数据库返回一行的方式总是返回 true。

如果我像这样在一行中进行查询:

$test= DB::table('users')->where('email', $email)->where('password', $password)->first();

它按预期工作,如果找到一行它是真的,反之亦然,但如果我像这样附加到查询,它总是真的(这是有道理的,但我如何检查它实际上从数据库?):

$test= DB::table('users');
$test->where('email', $email);
$test->where('password', $password);
$test->first();

if ($test) {
// always true
}

最佳答案

语句 $test->first(); 执行查询并返回第一个结果,但您没有将该结果分配给任何东西,所以 $test仍然只是查询对象,如您所见,它将始终评估为 true。如果您将它分配给其他东西然后检查它,它应该可以工作。

$example = $test->first();

if ($example) { ...

关于php - 基于条件附加 ->where() 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38515320/

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