MongoDB\BSON\Regex::__construct
(mongodb >=1.0.0)
MongoDB\BSON\Regex::__construct — Construct a new Regex
説明
$pattern
[, string $flags = ""
] )パラメータ
-
pattern(string) -
The regular expression pattern.
注意: The pattern should not be wrapped with delimiter characters.
-
flags(string) -
The » regular expression flags. Characters in this argument will be sorted alphabetically.
エラー / 例外
- 引数のパースに失敗した場合に MongoDB\Driver\Exception\InvalidArgumentException をスローします。
- Throws MongoDB\Driver\Exception\InvalidArgumentException if
patternorflagscontain null bytes.
変更履歴
| バージョン | 説明 |
|---|---|
| 1.2.0 |
The
Characters in the
MongoDB\Driver\Exception\InvalidArgumentException
is thrown if |
例
例1 MongoDB\BSON\Regex::__construct() example
<?php
$regex = new MongoDB\BSON\Regex('^foo', 'i');
var_dump($regex);
?>
上の例の出力は以下となります。
object(MongoDB\BSON\Regex)#1 (2) {
["pattern"]=>
string(4) "^foo"
["flags"]=>
string(1) "i"
}