0
當執行下面的查詢時,它給了我一個對象數組而不是stdClass對象。我正在使用Laravel 5.2和Mongodb。請幫忙first()返回數組而不是stdClass對象 - Laravel 5.2 MongoDB
$student = DB::table('students')->first();
print_r($student);
在此先感謝。
當執行下面的查詢時,它給了我一個對象數組而不是stdClass對象。我正在使用Laravel 5.2和Mongodb。請幫忙first()返回數組而不是stdClass對象 - Laravel 5.2 MongoDB
$student = DB::table('students')->first();
print_r($student);
在此先感謝。
我想你可以試試這個:
$student = DB::table('students')->first();
$student = (object)$student;
print_r($student)
謝謝。它的工作 –
將ü請告訴你爲什麼需要stdClass的對象 –
我對現有的項目工作,所以它使用的是無處不在stdClass的語法我有我的本地機器上安裝laravel代碼,然後上面查詢給出數組對象數據。 –
'$學生','$學生'你確定你的變量是正確的嗎? –