本文整理汇总了PHP中MongoCursor::ensureIndex方法的典型用法代码示例。如果您正苦于以下问题:PHP MongoCursor::ensureIndex方法的具体用法?PHP MongoCursor::ensureIndex怎么用?PHP MongoCursor::ensureIndex使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MongoCursor
的用法示例。
在下文中一共展示了MongoCursor::ensureIndex方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testGeoBox
public function testGeoBox()
{
$this->markTestSkipped("server bug");
return;
$this->object->ensureIndex(array("loc" => "2d"), array("min" => 0, "max" => 10));
for ($i = 1; $i < 10; $i++) {
for ($j = 1; $j < 10; $j++) {
$this->object->insert(array("loc" => array($i, $j)));
}
}
$cursor = $this->object->find(array("loc" => array('$within' => array('$box' => array(array(4, 4), array(6, 6))))))->sort(array("loc" => 1));
for ($i = 4; $i < 7; $i++) {
for ($j = 4; $j < 7; $j++) {
$val = $cursor->getNext();
$this->assertEquals($i, $val['loc'][0]);
$this->assertEquals($j, $val['loc'][1]);
}
}
}