php – 将MongoCursor从 – > find()转换为数组

前端之家收集整理的这篇文章主要介绍了php – 将MongoCursor从 – > find()转换为数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$jokes = $collection->find();

如何将$jokes转换为数组?

您可以使用PHPiterator_to_array功能,如 MongoCursor docs中的示例1所示:
$jokes = $collection->find();
$jokesArray = iterator_to_array($jokes);
原文链接:https://www.f2er.com/php/140020.html

猜你在找的PHP相关文章