基于条件附加 ->where() 子句
appending ->where() clauses based on conditionals
我想根据特定条件将 where
子句附加到查询,问题是我检查它是否从数据库返回一行的方式总是 returns 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();
执行查询并 returns 第一个结果,但您没有将该结果分配给任何东西,所以 $test
仍然只是查询对象,它如您所见,将始终评估为 true
。如果您将它分配给其他东西然后检查它,它应该可以工作。
$example = $test->first();
if ($example) { ...
我想根据特定条件将 where
子句附加到查询,问题是我检查它是否从数据库返回一行的方式总是 returns 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();
执行查询并 returns 第一个结果,但您没有将该结果分配给任何东西,所以 $test
仍然只是查询对象,它如您所见,将始终评估为 true
。如果您将它分配给其他东西然后检查它,它应该可以工作。
$example = $test->first();
if ($example) { ...