我的PHP代碼是這樣......如何在PHP中從MongoDB集合中檢索對象?
<?php
$dbhost = 'localhost';
$dbname = 'test_pranav';
$connection = new MongoClient("mongodb://$dbhost");
$connection->selectDB('test_pranav');
$collection = $connection->selectCollection('test_pranav', 'posts');
$testResult = $collection->find();
print_r($testResult);
exit;
?>
我插入的記錄manully通過PhpMongo UI工具。但是當我嘗試打印同一張表的內容時,它會給出空的對象。
請讓我知道我錯在哪裏?
你終於成功了嗎? – Guilro