gpt4 book ai didi

php - 如何检查未选择任何查询?

转载 作者:行者123 更新时间:2023-11-29 05:09:12 25 4
gpt4 key购买 nike

我使用 Laravel 框架。

这是我的查询:

$users = DB::table('users')->whereIn('id', [1, 2, 3])->get();

我要看看有没有结果?换句话说,我需要检查是否选择了任何行?如何检查?

最佳答案

你可以使用count():

if (count($users)) {
....
} else {
// No users were selected.
}

关于php - 如何检查未选择任何查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42527367/

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