我正在使用 MongoDB(2.4.1 版)来存储 XML 文件中的信息。在 XML 解析过程中,我为每个项目描述创建 SimpleXMLElement。这是插入新文档的代码:
$response = $collection->insert($object, array('safe'=>true, 'fsync'=> true)),
其中 $object 具有 SimpleXMLElement 类型。
问题是我需要获取插入文档的 id,但是当我在插入操作后尝试获取它时,它返回 NULL:
$response = $collection->insert($object, array('safe'=>true, 'fsync'=> true)),
die(var_dump($object));
这是“插入”操作的预期行为吗?