gpt4 book ai didi

php - 在 mongoDB 中查找具有 ObjectID 的文档

转载 作者:IT老高 更新时间:2023-10-28 13:03:54 25 4
gpt4 key购买 nike

当我将一些文档插入到集合中(没有 ObjectID)时,mongoDB 会添加自己的 ObjectID。

我想通过唯一的 ObjectID 查询一个文档。

$db->collection_name->find(array('_id'=>'4e49fd8269fd873c0a000000')));

它不适用于“4e49fd8269fd873c0a000000”前面的 MongoID 或 ObjectID 前缀。

在 PHP 中通过 ObjectID 和 mongoDB 查询的正确方法是什么?

最佳答案

很确定您必须使用 MongoId对象,例如

$item = $collection->findOne(array(
'_id' => new MongoId('4e49fd8269fd873c0a000000')));

Querying 上的注释页面有点迟钝,但确实提到...

Unless the user has specified otherwise, the _id field is a MongoId. The most common mistake is attepting to use a string to match a MongoId. Keep in mind that these are two different datatypes, and will not match each other in the same way that the string "array()" is not the same as an empty array

关于php - 在 mongoDB 中查找具有 ObjectID 的文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7074309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com