MongoRegex::__construct
(PECL mongo >= 0.8.1)
MongoRegex::__construct — 新しい正規表現を作成する
説明
public MongoRegex::__construct
( string
$regex
)新しい正規表現を作成します。
パラメータ
-
regex -
正規表現 (/expr/flags 形式の文字列)。
返り値
新しい正規表現を返します。
例
例1 MongoRegex::__construct() の例
この例は、正規表現を使用してすべてのドキュメントに問い合わせ、username フィールドがその正規表現にマッチするドキュメントを取得します。
<?php
$joe_search = new MongoRegex("/j[o0]e/i");
$cursor = $collection->find(array("username" => $joe_search));
?>