©
本文檔使用 php中文網手册 發布
(PECL mongo >=0.9.0)
MongoCollection::count — 返回集合中的文档数量
$query
= array()
[, int $limit
= 0
[, int $skip
= 0
]]] )
query
关联数组或者对象,含有需要匹配的字段。
limit
指定返回数量的上限。
skip
指定在开始统计前,需要跳过的结果数目。
返回查询匹配到的文档数目。
版本 | 说明 |
---|---|
1.0.7 |
添加了 limit 和 skip
参数。
|
Example #1 MongoCollection::count() 例子
<?php
$collection -> insert (array( 'x' => 1 ));
$collection -> insert (array( 'x' => 2 ));
$collection -> insert (array( 'x' => 3 ));
var_dump ( $collection -> count ());
var_dump ( $collection -> count (array( 'x' => 1 )));
?>
以上例程的输出类似于:
int(3) int(1)