MongoDb & 中是否有相当于 MySql 的 getLastInsertID() 的方法? PHP?
标题已经说明了一切。 我发现了一个看起来像这样的例子:
db.find(fields = {"-id"}).sort("-id", -1).limit(X)
但这似乎并不安全,因为这是假设 id 实际上是有序的。
The title asks it all.
I have found an example that looked something like this:
db.find(fields = {"-id"}).sort("-id", -1).limit(X)
but that doesn't seem safe because that is assuming the ids will actually be in order.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它将把 ID 添加到 $item 数组中。另请注意,如果您愿意,可以使用对象而不是数组。
It'll add the ID to the $item array. Also note you can use an object instead of an array if it's your preference.