可捕获的致命错误:类Mongocursor的对象无法转换为字符串

时间:2015-08-08 07:56:57

标签: mongodb wamp

当我尝试查看从MongoDB到网页的数据时,这是我的错误。 在Windows中使用Wamp

Catchable fatal error: Object of class MongoCursor could not be converted to string

这意味着什么,我应该怎么做?

1 个答案:

答案 0 :(得分:0)

我想出了删除错误的方法,请检查此代码

<?php
// connect to mongodb
$m = new MongoClient();

$db = $m->local;				// select a database
$collection = $db->directors;  // select a collection (table in old DB)
$cursor = $collection->find(); // view all
foreach ($cursor as $doc)
{
    var_dump($doc);
}
?>

在上面的代码中,var_dump()函数用于显示值或变量的数据类型,因此如果您使用此函数,这也可以为您提供有关此大小和数据长度的详细信息,并显示结果也是。

此代码用于如何从MongoDB获取值并在PHP页面上显示。