我正在使用MongoDB PHP库来操作mongodb 我从mongodb查询了一些数据,我想将查询结果转换为数组, 因为我想将数组插入mysql。
例如,
$collection = (new \MongoDB\Client)->test->articles;
$cursor = $collection->find([],['projection' => ['_id' => 0]])
$articles=$cursor->toArray();
dd($articles);
我使用toArray()
将$cursor
转换为数组,结果如下:
结果的元素是BSONDocument
,它们无法正确插入到mysql中,我该怎么办?