0
{_id : ObjectId(...), name : "name", ids : [44, 1, 9, 11, 15, 66]}
如何刪除,例如15
形式ids
???
這可能使用$pull
http://docs.mongodb.org/manual/reference/operator/update/pull/?
爾康文檔http://docs.phalconphp.com/en/latest/reference/odm.html#creating-updating-records
真的不知道,因爲我不使用。但是,當您深入瞭解集合接口文檔時,似乎有一個['getConnection()'](http://docs.phalconphp.com/en/latest/api/Phalcon_Mvc_Collection.html)方法。這似乎從依賴注入接口獲得底層驅動程序連接。一旦你有標準的驅動程序連接,那麼你應該能夠使用所有支持的方法[那裏](http://www.php.net/manual/en/class.mongodb.php) –