欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

laravel DB::table('user')->get()

程序员文章站 2022-05-27 19:30:24
...
DB::table()->get()方式如何得到数组而不是对象?

回复内容:

DB::table()->get()方式如何得到数组而不是对象?

试看看?

$result = DB::table()->get();
$result = $result->toArray();

或者

DB::table()->get()->toArray();