MongoDB\BSON\Regex
PHP Manual

MongoDB\BSON\Regex::__construct

(mongodb >=1.0.0)

MongoDB\BSON\Regex::__constructConstruct a new Regex

Description

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

Parameters

pattern (string)

The regular expression pattern.

flags (string)

The regular expression flags.

Errors/Exceptions

Examples

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

<?php

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

?>

The above example will output:

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

See Also


MongoDB\BSON\Regex
PHP Manual