我有一个查询,检查User表中是否有具有特定代码的用户并抓取该用户,并将其设置为$mainCustomer。我刚刚意识到在某些情况下,可能没有使用该代码的用户。我以为我下面的检查会覆盖我,但我相信如果它为空,我可能会得到查询本身的错误。如何防止查询出错?! $mainCustomer
$mainCustomer = User::where('code', '=', $value_code)->first();
if (! $mainCustomer) {
log_info("doesn't exist");
return;
}
胡说叔叔