first()返回和数组而不是stdClass对象 - Laravel 5.2 MongoDB

时间:2017-05-13 11:16:34

标签: php mongodb laravel

当执行下面的查询时,它给出了我的对象数组而不是stdClass对象。我正在使用Laravel 5.2和Mongodb。请帮忙

$student = DB::table('students')->first();
print_r($student);

提前致谢。

1 个答案:

答案 0 :(得分:1)

我想你可以试试这个:

$student = DB::table('students')->first(); 
$student = (object)$student;
print_r($student)