我目前正在这样做:
$t_category = 781;
$res = $collection->findOne(array("_id" => intval($t_category)));
这样我只得到一个类别(它只是为了尝试)。如何在php-> mongo中获取所有类别(documents-> _ids)?我可以迭代集合中的所有文档的方法。我试过没有参数的发现。没运气。有什么想法吗?
答案 0 :(得分:1)
不带参数调用find
将返回集合中的所有项目。
$results = $collection->find();