Types
PHP Manual

The MongoRegex class

(PECL mongo >=0.8.1)

Aviso

A extensão que define essa classe está obsoleta. Alternativamente utilize a extensão MongoDB deve ser utilizada. Alternativas a essa classe incluem:

Introdução

This class can be used to create regular expressions. Typically, these expressions will be used to query the database and find matching strings. More unusually, they can be saved to the database and retrieved.

Regular expressions consist of four parts. First a / as starting delimiter, then the pattern, another / and finally a string containing flags.

Exemplo #1 Regular expression pattern

/pattern/flags

MongoDB recognizes six regular expression flags:

  • i: Case insensitive

  • m: Multiline

  • x: Can contain comments

  • l: locale

  • s: dotall, "." matches everything, including newlines

  • u: match unicode

Sinopse da classe

MongoRegex {
/* Fields */
public string $regex ;
public string $flags ;
/* Métodos */
public __construct ( string $regex )
public string __toString ( void )
}

Índice


Types
PHP Manual