MongoDB\BSON\Regex::__construct

(mongodb >=1.0.0)

MongoDB\BSON\Regex::__constructConstruct a new Regex

Описание

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

Список параметров

pattern (string)

The regular expression pattern.

Замечание:

The pattern should not be wrapped with delimiter characters.

flags (string)

The » regular expression flags.

Ошибки

Примеры

Пример #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"
}

Коментарии

Автор:
This matches with any fieldName that includes the string:
$mongoRegex = new MongoDB\BSON\Regex("$string", "i");

This matches with any fieldName that STARTS with the string:
$mongoRegex = new MongoDB\BSON\Regex("^$string", "i");

$cursor = $collection->find( [ 'fieldName' => $mongoRegex ] );

$docs = [];

foreach($cursor as $doc){
     $docs[] = $doc;
}

return $docs;
2019-09-06 17:32:34
http://php5.kiev.ua/manual/ru/mongodb-bson-regex.construct.html

    Поддержать сайт на родительском проекте КГБ