Docs 菜单
Docs 主页
/ / /
PHP 库手册
/ / /

MongoDB\MapReduceResult::getIterator()

在此页面上

  • 定义
  • Return Values
  • 例子
  • 另请参阅
MongoDB\MapReduceResult::getIterator()

返回一个 可 遍历 的 ,它可用于遍历 map-reduce 操作的结果。

function getIterator(): Traversable

遍历 ,它可用于遍历 map-reduce 操作的结果。

此示例遍历 map-reduce 操作的结果。

<?php
$collection = (new MongoDB\Client)->test->zips;
$map = new MongoDB\BSON\Javascript('function() { emit(this.state, this.pop); }');
$reduce = new MongoDB\BSON\Javascript('function(key, values) { return Array.sum(values) }');
$out = ['inline' => 1];
$result = $collection->mapReduce($map, $reduce, $out);
foreach ($result as $population) {
var_dump($population);
};

而输出将类似如下所示:

object(stdClass)#2293 (2) {
["_id"]=>
string(2) "AK"
["value"]=>
float(544698)
}
object(stdClass)#2300 (2) {
["_id"]=>
string(2) "AL"
["value"]=>
float(4040587)
}
object(stdClass)#2293 (2) {
["_id"]=>
string(2) "AR"
["value"]=>
float(2350725)
}
object(stdClass)#2300 (2) {
["_id"]=>
string(2) "AZ"
["value"]=>
float(3665228)
}
  • MongoDB\Collection::mapReduce()

  • IteratorAggregate::getIterator()

后退

getExecutionTimeMS()