MongoRegex::__construct

(PECL mongo >= 0.8.1)

MongoRegex::__construct新しい正規表現を作成する

説明

public MongoRegex::__construct ( string $regex )

新しい正規表現を作成します。

パラメータ

regex

正規表現 (/expr/flags 形式の文字列)。

返り値

新しい正規表現を返します。

例1 MongoRegex::__construct() の例

この例は、正規表現を使用してすべてのドキュメントに問い合わせ、 username フィールドの先頭 (^) が l で、その後に母音 ([aeiouy]) が大文字小文字を区別せずに (/i) 続くドキュメントを取得します。

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

参考

add a note add a note

User Contributed Notes 1 note

up
0
calimero at creatixnet dot com
12 years ago
AFAICT, as of PHP 5.3.6, this function doesn't work correctly with any delimiter character other than plain slash (/), which is annoying if your pattern looks like a URL or file path for example (which itself may contain slashes you'll have to escape).

One can make use of the print_r($your_mongoregex_object) statement to ensure the pattern is recognized properly.
To Top