1
我試圖從文檔中刪除字段蒙戈終端等爲:如何從Mongodb(Mongo PHP)中刪除字段?
db.getCollection('objects').update({}, {$unset: {'value.speed':''}} , {multi: true});
它的工作原理,但如何在蒙戈PHP(老版)寫這篇文章。
我想:
$find = [
'value' => ['$exists' => true]
];
$update = [];
$update['$unset']['value']['speed'] = null;
$this->collection->update($find, $update, ['multiple' => true]);
能否動態地使用陣列爲:'$更新=;'[ '$未設置'=> [ '值。' $數據[ 「前綴」] =>真 ] 。]? – Yahorow
@Yahorow,是的,畢竟這是一個普通的字符串值 –