찾다

 >  Q&A  >  본문

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

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

PHP中文网PHP中文网2818일 전280

모든 응답(1)나는 대답할 것이다

  • 怪我咯

    怪我咯2017-04-10 16:32:14

    试看看?

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

    或者

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

    회신하다
    0
  • 취소회신하다