正则表达式 MongoDB PHP 查询

问题描述 投票:0回答:3

我希望在 MongoDB 查找查询上执行 REGEX,该查询仅查找字符串中包含图像的任何内容,其搜索的是文件类型标头,因此它通常看起来像 image/png 或 text/html。

我正在为正则表达式运行此代码:

array('fileType'=>array('$regex'=>'^image'))

以及这段代码:

foreach ($this->grid->find(array('fileType'=>array('$regex'=>'^image'))) as $file) {
                        $id = (string) $file->file['_id'];
                        $filename = htmlspecialchars($file->file["filename"]);
                        $filetype = isset($file->file["filetype"]) ? $file->file["filetype"] : 'application/octet-stream';

                        if($filetype == 'image/'.$chosenfile.''){
                            $links[] = sprintf('<img src="lib/download.php?id=%s" height="200px" width="200px">', $id);
                        }elseif($chosenfile == ''){
                             $links[] = sprintf('<img src="lib/download.php?id=%s" height="200px" width="200px">', $id);
                        }
                    }
php mongodb
3个回答
11
投票

这是你的问题:

array('$regex'=>'^image')

它应该使用 MongoRegex 对象:

array('fileType' => new MongoRegex('/^image/i'))

文档定义如下:http://www.php.net/manual/en/class.mongoregex.php

现在可以用了吗?


0
投票

使用 php 检查下面的 mongodb 实例查询是否有效..

$pipeline = array(
                array('$match' => array(
                                    '$and' => array(array('data_UTC' => array('$gte' => new MongoDate(strtotime('2017-01-20T00:00:00-02:00')),
                                                                                '$lt' => new MongoDate(strtotime('2017-01-29T00:00:00-02:00'))
                                                                        ),
                                                            'carga' => array('regex' => new MongoRegex('/^soja/i'))
                                                        )
                                                )
                                )
                ),
                array('$group' => array('_id' => array('$dataToString' => array('format' => '%Y-%m-%d', 'date' => array('$subtract' => array('$data_UTC', 1000 * 60 * 60 * 2)))), 'qtd_acessos' => array('$sum' => 1 ))),
                array('$sort' => array('_id' => -1)),
                array('$limit' => 50)
            );
$results = $this->mongodb->aggregate($pipeline);

0
投票

自 MongoDB 8.0.4 起

//php
$filter = ['fileType' => ['$regex' => '^image', '$options' => 'i']];
$rr = $collection->find( $filter  );
© www.soinside.com 2019 - 2024. All rights reserved.