4

我希望在 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);
                        }
                    }
4

2 回答 2

11

这是你的问题:

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

它应该使用 MongoRegex 对象:

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

文档在这里定义:http ://www.php.net/manual/en/class.mongoregex.php

它现在有效吗?

于 2012-06-28T21:43:24.223 回答
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);
于 2017-08-18T08:42:46.660 回答