PHP / MongoDB - 使用_id将子文档添加到文档

时间:2013-05-18 22:49:50

标签: php mongodb

我正在尝试用PHP学习MongoDB。我可以使用 - > save($ object)成功保存新文档。我的目标是为具有特定_id的文档添加子文档。

我有一份文件:

"5197f4bef045a1d710000032": {
"_id": {
  "$id": "5197f4bef045a1d710000032"
},
"tag": 5487,
"serial": "1z5589ss56",
"type": "Soda Can",
"dept": "NOC",
"location": "Mitchell",
"date": 1368913086,
"moves": null
}

我想在“移动”中插入一个新文档。

我已经能够使用$ set,但随后的$ push什么都不做。

    <?php


$m = new Mongo();

$d = $m->selectDB('peeps');
$c = $d->family;
$fields = array('tag' => 5487 , 'serial' => '1z5589ss56', 'type' => 'Soda Can', 'dept' => 'NOC', 'location' => 'Mitchell', 'date' => time() );

$can = new Asset($fields);
#$c->save($can);

#Update to insert move

$c->update(array('_id' => new MongoID('5197f0cef045a1d710000032')), array('$push' => array('moves' => $can)));


$cur = $c->find();
$J = json_encode(iterator_to_array($cur));
print($J);


class Asset{

    public $tag;
    public $serial;
    public $type;
    public $dept;
    public $location;
    public $date;
    public $moves;

    public function __construct($fields){
        $this->tag = $fields['tag'];
        $this->serial = $fields['serial'];
        $this->type = $fields['type'];
        $this->dept = $fields['dept'];
        $this->location = $fields['location'];
        $this->date = $fields['date'];
    }
}

根据我所读到的内容,每次重新加载页面时,都应该在5197f0cef045a1d710000032.moves中创建一个嵌套文档。

我不确定我错过了什么。

谢谢,

米切尔

1 个答案:

答案 0 :(得分:2)

如果您计划稍后使用$push到同一字段,则不应将$ set与简单值一起使用。

第一次更新时使用$push。它将创建一个单个元素的数组,然后您就可以向其添加(推送)更多元素。