作者:springaccounn | 来源:互联网 | 2023-09-17 11:17
1php12345$p = Project::where('user_id', '=', $userid)->get();print_r($p); //有3条数据empty($p);
1 2 3 4 5
| $p = Project::where('user_id', '=', $userid)->get();
print_r($p); //有3条数据
empty($p); //return ture |
为什么print_r能看到数据,可以empty却返回true呢?