$_GET['texture_id']),a-6ren">
gpt4 book ai didi

php - MongoDB + PHP Item 不会删除()?

转载 作者:搜寻专家 更新时间:2023-10-30 22:21:00 27 4
gpt4 key购买 nike

我不确定我做错了什么,但是我正在尝试使用 MongoDB 和 PHP 来做到这一点:

$db->textures->remove(array("_id"=>$_GET['texture_id']),array("safe" => true))

但是没有任何反应。我做了一个 print_r,它说:

Array ( [err] => [n] => 0 [ok] => 1 )

最佳答案

以下 Oscar Godson 的回答是正确的,但自 1.5.0 以来已弃用:

$db->textures->remove(array("_id"=>new MongoId($_GET['texture_id'])),array("safe" => true));

现在应该像这样使用 "w" 选项编写:

$db->textures->remove(array("_id"=>new MongoId($_GET['texture_id'])),array("w" => 1));

Sources

关于php - MongoDB + PHP Item 不会删除()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4048580/

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