- PHP 手册
- 函数参考
- 数据库扩展
- 针对各数据库系统对应的扩展
- Mongo
- 手册
- 教程
计算文档数量
现在我们的集合中有101个文档(100个循环插入的,加上一开始的一个),我们可以通过 MongoCollection::count() 方法检查它。
<?php
$connection = new MongoClient();
$collection = $connection->database->collectionName;
echo $collection->count();
?>
这会输出 101 。
User Contributed Notes
There are no user contributed notes for this page.官方地址:https://www.php.net/manual/en/mongo.tutorial.counting.php