gpt4 book ai didi

php - 未捕获的 MongoDB\Driver\Exception\ConnectionException : $or must be an array - PHP

转载 作者:IT老高 更新时间:2023-10-28 13:26:56 26 4
gpt4 key购买 nike

我正在尝试使用 MongoDB's PHP driver$or 运算符进行查询,但我收到以下错误:

Fatal error: Uncaught MongoDB\Driver\Exception\ConnectionException: $or 
must be an array in /path/to/file.php:83 Stack trace: #0 /path/to/file.php(83):
MongoDB\Driver\Manager->executeQuery('userAccou...',
Object(MongoDB\Driver\Query)) #1 {main} thrown in /path/to/file.php on line 83

这是我的代码:

postSub = $_POST['register']['subdomain'];
$postEmail = $_POST['register']['email'];
$filter = ['$or' => ['subdomain' => $postSub, 'email' => $postEmail]];

$query = new MongoDB\Driver\Query($filter);
$cursor = $mongo->executeQuery('DB_Name.Collection_Name', $query);

最佳答案

经过更多研究,我似乎误解了 $or 运算符,我将其解释为您只需指定一个键/值表达式数组,如果匹配,则结果是 true

$filter = ['$or' => ['subdomain' => $postSub, 'email' => $postEmail]];

为了解决这个问题,我只需要为每个表达式指定一个数组对象,因为多个表达式的数组在 MongoDB 中的计算结果为 $and

所以决议是:

$filter = ['$or' => [['subdomain' => $postSub], ['email' => $postEmail]]];

关于php - 未捕获的 MongoDB\Driver\Exception\ConnectionException : $or must be an array - PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42699474/

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