MongoDB\BSON\Regex
PHP Manual

MongoDB\BSON\Regex::__construct

(mongodb >=1.0.0)

MongoDB\BSON\Regex::__constructConstruct a new Regex

Descrição

final public MongoDB\BSON\Regex::__construct ( string $pattern , string $flags )

Parâmetros

pattern (string)

The regular expression pattern.

Nota:

The pattern should not be wrapped with delimiter characters.

flags (string)

The » regular expression flags.

Erros

Exemplos

Exemplo #1 MongoDB\BSON\Regex::__construct() example

<?php

$regex 
= new MongoDB\BSON\Regex('^foo''i');
var_dump($regex);

?>

O exemplo acima irá imprimir:

object(MongoDB\BSON\Regex)#1 (2) {
  ["pattern"]=>
  string(4) "^foo"
  ["flags"]=>
  string(1) "i"
}

Veja Também


MongoDB\BSON\Regex
PHP Manual