我有一个foreach循环,里面的数据是从mongodb获取的 这是一个样本
foreach($result as $document)
{
$response_object = $this->user_model->getdata($document['id']);
}
$ response_object包含此示例中最后一次迭代的mongocursor对象。我需要将$ response_object作为对象变量,它必须在foreach中连接对象直到迭代并存储在$ response_object中。
答案 0 :(得分:0)
为什么在使用数组时需要变量?
$listOfResponses = array();
foreach($result as $document)
array_push($listOfResponses, $this->user_model->getdata($document['id']));