gpt4 book ai didi

php - 如何查询 MongoDB 集合?

转载 作者:可可西里 更新时间:2023-11-01 10:34:00 25 4
gpt4 key购买 nike

[_id] => MongoId Object (
[$id] => 5090ace3788a466769b3804e
)
[startdate] => MongoDate Object (
[sec] => 1301616000
[usec] => 0
)
[enddate] => MongoDate Object (
[sec] => 1304121600
[usec] => 0
)
[your_id] => 33902
[odd_blah] => blahblah
[cam_id] => 339
[cost] => 0.01
[iscurrent] =>
[damn_current] => Array (
)

$coll = $this->mongo_db->where('cam_id', 339)->get('collection_name);

这不会返回任何内容。你可能会注意到我正在使用 https://github.com/alexbilbie/codeigniter-mongodb-library/tree/v2

我得到一个空数组。谁能帮忙?这听起来很原始,但有点卡在这里。

最佳答案

你非常接近,你需要将你的 where 语句放在一个数组中。

$coll = $this->mongo_db
->where(array('cam_id' => 339))
->get('collection_name');

我假设您使用的是 Alex Bilbie 的 MongoDB CodeIgniter Library .他的文档真的过时了,更推荐看他的评论 source code示例和函数所需的输入类型。

关于php - 如何查询 MongoDB 集合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13203555/

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