我正在对 MongoDB 进行查询,我只想要第一个对象。我知道我可以使用findOne
,但我仍然很困惑我哪里出错了。
这不起作用:
if ($cursor->count() > 0) {
$image = $cursor->current();
// neither does this work
// $image = $cursor[0];
return $image;
} else {
return false;
}
//echo $image->filename;
// Throws error: Trying to access property of non-object image
这虽然有效:
if ($cursor->count() > 0) {
$image = null;
foreach($cursor as $obj)
$image = $obj;
return $image;
} else {
return false;
}