PHP Doku:: Creates a new regular expression - mongoregex.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverTypesThe MongoRegex classMongoRegex::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoRegex class

<<The MongoRegex class

MongoRegex::__toString>>

MongoRegex::__construct

(PECL mongo >= 0.8.1)

MongoRegex::__constructCreates a new regular expression

Beschreibung

MongoRegex::__construct ( string $regex )

Creates a new regular expression.

Parameter-Liste

regex

Regular expression string of the form /expr/flags.

Rückgabewerte

Returns a new regular expression.

Beispiele

Beispiel #1 MongoRegex::__construct() example

This example uses a regular expression to query for all documents with a username field matching a regular expression.

<?php

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

?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)