Php/docs/mongoregex.construct

来自菜鸟教程
跳转至:导航、​搜索

MongoRegex::__construct

(PECL mongo >= 0.8.1)

MongoRegex::__construct创建一个新的正则表达式


This extension that defines this method

is deprecated. Instead, the MongoDB extension should be used. Alternatives to this method include:

说明

public MongoRegex::__construct ( string $regex )

创建一个新的正则表达式。


参数

regex
/expr/flags 形式的正则表达式字符串。


返回值

返回一个新的正则表达式。


范例

Example #1 MongoRegex::__construct() 例子

这个例子使用了正则表达式来查询包含匹配正则表达式的所有文档,用户名字段以 (^) 开始,一个 l 和一个元音字母 ([aeiouy]),大小写不敏感 (/i)。


<?php$luke_search = new MongoRegex("/^l[aeiouy]/i");$cursor = $collection->find(array("username" => $luke_search));?>

参见