喜欢 MongoDb 中的查询 使用 PHP
Like queries in MongoDb Using PHP
我想使用 MongoDb 和 PHP 在我的应用程序中使用类似查询进行搜索,但我没有得到正确的结果。
代码:
$query = array("first_name" => "/.*a.*/" );
$updateResult = $this->dbCustomer->find($query);
试试这个,
$query = array("first_name" => array("$regex" => "/.a./"));
$updateResult = $this->dbCustomer->find($query);
more details, please check this out
我得到了答案,我试了一下,效果很好:
$query = array(array("first_name" => new MongoDB\BSON\Regex("$search_text", 'i')))
我想使用 MongoDb 和 PHP 在我的应用程序中使用类似查询进行搜索,但我没有得到正确的结果。
代码:
$query = array("first_name" => "/.*a.*/" );
$updateResult = $this->dbCustomer->find($query);
试试这个,
$query = array("first_name" => array("$regex" => "/.a./"));
$updateResult = $this->dbCustomer->find($query);
more details, please check this out
我得到了答案,我试了一下,效果很好:
$query = array(array("first_name" => new MongoDB\BSON\Regex("$search_text", 'i')))