是否可以在查询后获取新的/更新的_id? 示例代码:
$key = array( 'something' => 'unique' );
$data = array( '$inc' => array( 'someint' => 1 ) );
$mongodb->db->collection->update( $key, $data, array( 'upsert' => true ) );
$ key没有持有新的/旧的_id对象,我认为$ data也不会因为它只是一条指令。
答案 0 :(得分:16)
是 - 可以使用单个查询。
MongoDB包含一个findAndModify
命令,可以自动修改文档并将其返回(默认情况下,它实际上会在文档被修改之前返回)。
PHP驱动程序在集合类上没有包含一个方便的方法(但是 - 请查看this bug),但它仍然可以使用(注意我的PHP很糟糕,所以我可能会非常以下代码片段中出现了语法错误:
$key = array( 'something' => 'unique' );
$data = array( '$inc' => array( 'someint' => 1 ) );
$result = $mongodb->db->command( array(
'findAndModify' => 'collection',
'query' => $key,
'update' => $data,
'new' => true, # To get back the document after the upsert
'upsert' => true,
'fields' => array( '_id' => 1 ) # Only return _id field
) );
$id = $result['value']['_id'];
答案 1 :(得分:15)
万一有人偶然发现了这个问题,当你调用MongoCollection-> save()时,Mongo会实际修改输入数组。 - 将id附加到最后。 所以,如果你打电话:
$test = array('test'=>'testing');
mongocollection->save($test);
echo $test['_id'];
您将获得该对象的mongo id。
答案 2 :(得分:3)
我遇到了这个问题并通过在upsert之后查询_id来解决它。我想我会添加一些我的发现,以防他们对来这里搜索信息的人有用。
当upsert导致在集合中创建一个新文档时,返回的对象包含_id(这里是一个例子的print_r):
Array
(
[updatedExisting] => 0
[upserted] => MongoId Object
(
[$id] => 506dc50614c11c6ebdbc39bc
)
[n] => 1
[connectionId] => 275
[fsyncFiles] => 7
[err] =>
[ok] => 1
)
您可以从中获取_id:
$id = (string)$obj['upserted'];
但是,如果upsert导致现有文档被更新,则返回的对象不包含_id。
答案 3 :(得分:1)
试一试:
function save($data, $id = null) {
$mongo_id = new MongoId($id);
$criteria = array('_id' => $mongo_id);
// Wrap a '$set' around the passed data array for convenience
$update = array('$set' => $data);
$collection->update($criteria, $update, array('upsert' => true));
}
因此,假设传递的$id
为空,则会创建一个新的MongoId
,否则它只会将现有的$id
转换为MongoId对象。
希望这会有所帮助:D
答案 4 :(得分:1)
update方法返回一个数组,其中包含文件的标识为UPSERTED:
Array
(
[ok] => 1
[nModified] => 0
[n] => 1
[err] =>
[errmsg] =>
[upserted] => MongoId Object
(
[$id] => 5511da18c8318aa1701881dd
)
[updatedExisting] =>
)
答案 5 :(得分:0)
您还可以在update / upsert中将fsync设置为true,以使_id返回到已传递给更新的对象。
$save = array ('test' => 'work');
$m->$collection->update(criteria, $save, array('fsync' => true, 'upsert' => true));
echo $save['_id']; //should have your _id of the obj just updated.