PHP 中的 MongoDB OR 查询
使用 OR 比较用户名和经验的正确代码是什么?
$regex = new MongoRegex("/".$name."*/i");
$regex2 = new MongoRegex("/".$comm."*/i");
$where = array('$in' => array('username' => array($regex),'experience' => array($regex2)));
$cursor = $collection->find($where)->limit($limit)->skip($skip);
What is the correct code to compare username and experience using OR?
$regex = new MongoRegex("/".$name."*/i");
$regex2 = new MongoRegex("/".$comm."*/i");
$where = array('$in' => array('username' => array($regex),'experience' => array($regex2)));
$cursor = $collection->find($where)->limit($limit)->skip($skip);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在两个正则表达式的上下文中,您想要 $in 运算符做什么?零意义......看看 $or 运算符。
What do you want with an $in operator in the context of two regular expressions? Makes zero sense....look at the $or operator instead.