MongoRegex::__construct

(PECL mongo >= 0.8.1)
Creates a new regular expression
public MongoRegex::__construct ( string $regex )

Creates a new regular expression.

Parameters:
regex

Regular expression string of the form /expr/flags.

Returns:

Returns a new regular expression.

Examples:
MongoRegex::__construct() example

This example uses a regular expression to query for all documents with a username field starting (^) with an l and a vowel ([aeiouy]), case-insensitive (/i).

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

See also:

MongoRegex::__toString() -

doc_php
2016-02-24 16:20:50
Comments
Leave a Comment

Please login to continue.