Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.9k views
in Technique[技术] by (71.8m points)

How to get the total number of documents stored inside MongoDB collection using PHP

I have a MongoDB collection called 'archives' in DB called 'data' and all I want is to use PHP to get a total count of documents in this collection. I spent 30 minutes searching and can't find anything that would help. The following doesn't work:

$manager = new MongoDBDriverManager('mongodb://username:[email protected]:27017');

$command = new MongoDBDriverCommand(
        ['count' => 'archives', 
]);

$cursor = $manager->executeCommand('data', $command);

$count = current($cursor->toArray())->values;

Any ideas on how to get a simple count of all documents?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...