如何从php中获取mongodb集合中的所有记录

时间:2016-02-06 12:17:11

标签: php mongodb

我尝试使用以下代码从mongodb集合中选择所有记录。但只有最后插入的记录才会出现。

<?php 
$m=new MongoClient();
$db=$m->trip;
if($_SERVER['REQUEST_METHOD']=="POST")
{
    $userId=$_POST['userId'];
    $param=explode(",",$userId);
    $collection=$db->chat;
    $record=$collection->find(array("userId"=>$userId));
    if($record)
    {
        foreach($record as $rec)
        {
            $json=array("msg"=>$rec);
        }
    }
    else
    {
        $json=array("msg"=>"No Records");
    }
}
else
{
    $json=array("msg"=>"Request Method is Not Accespted");
}
//output header
header('Content-type:application/json');
echo json_encode($json);

&GT;

但只会有一条记录 请帮帮我

1 个答案:

答案 0 :(得分:0)

您的问题是,每次执行foreach时,它都会覆盖$json变量的内容。首先尝试声明$json,然后再使用它。

if($record)
{
    $json = array();
    foreach($record as $rec)
    {
        $json[] = array("msg"=>$rec);
        //   /\ this means adding the attribution to the end of the array.
    }
}

这样,每次执行foreach时,$json的内容都不会被替换,而是会被追加。