通过上限集合上的PHP mongoDB驱动程序禁止在插入时生成_id

时间:2011-08-30 10:36:54

标签: php mongodb mongodb-php

我有一个没有_id索引的上限集合,我根本不需要_id, 但PHP mongo驱动程序总是在插入时添加_id。

It is possible to suppress the automatic generation of an _id with the mongo shell

如何使用PHP来插入_id上的_id?

1 个答案:

答案 0 :(得分:0)

你无法摆脱_id,但你可以覆盖它。 因此,您可以将1列数据插入_id字段。

例如

$myCollection->insert(array("_id" => 2000, "data" => "someData));