MongoRegex
PHP 手册

MongoRegex::__construct

(PECL mongo >= 0.8.1)

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

说明

public MongoRegex::__construct ( string $regex )

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

参数

regex

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

返回值

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

范例

Example #1 MongoRegex::__construct() 例子

这个例子使用了正则表达式来查询包含匹配正则表达式的用户名的所有文档。

<?php

$joe_search 
= new MongoRegex("/j[o0]e/i");
$cursor $collection->find(array("username" => $joe_search));

?>

参见


MongoRegex
PHP 手册