Docs Menu
Docs Home
/ / /
PHP 라이브러리 매뉴얼
/ / /

MongoDB\MapReduceResult::getIterator()

이 페이지의 내용

  • 정의
  • Return Values
  • 예시
  • 다음도 참조하세요.
MongoDB\MapReduceResult::getIterator()

순회가능 를 반환합니다. 맵 리듀스 작업의 결과를 반복하는 데 사용할 수 있습니다.

function getIterator(): Traversable

순회 가능 맵 리듀스 작업의 결과를 반복하는 데 사용할 수 있습니다.

이 예제에서는 맵 리듀스 작업의 결과를 반복합니다.

<?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()