MongoDB\BSON\Regex
PHP Manual

MongoDB\BSON\Regex::__construct

(mongodb >=1.0.0)

MongoDB\BSON\Regex::__constructConstruit une nouvelle REGEX

Description

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

Liste de paramètres

pattern (string)

Le masque de l'expression régulière.

Note:

Le masque ne doit pas être entouré de caractères délimitants.

flags (string)

Les »  drapeaux de l'expression régulière.

Erreurs / Exceptions

Exemples

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

<?php

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

?>

L'exemple ci-dessus va afficher :

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

Voir aussi


MongoDB\BSON\Regex
PHP Manual