Mongodb:如何使用MongoDB PHP库将集合转换为数组?

时间:2017-09-08 08:26:38

标签: php mongodb laravel

我正在使用MongoDB PHP库来操作mongodb 我从mongodb查询了一些数据,我想将查询结果转换为数组, 因为我想将数组插入mysql。

例如,

    $collection = (new \MongoDB\Client)->test->articles;
    $cursor = $collection->find([],['projection' => ['_id' => 0]])
    $articles=$cursor->toArray();
    dd($articles);  

我使用toArray()$cursor转换为数组,结果如下: enter image description here

结果的元素是BSONDocument,它们无法正确插入到mysql中,我该怎么办?

0 个答案:

没有答案