Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16238 программистов и 1780 роботов. Сейчас ищут 2079 программистов ...
MongoRegex::__construct - Creates a new regular expression
Вернуться к: MongoRegex
MongoRegex::__construct
(PECL mongo >= 0.8.1)
MongoRegex::__construct — Creates a new regular expression
This extension that defines this method is deprecated. Instead, the MongoDB extension should be used. Alternatives to this method include:
Описание
public MongoRegex::__construct
( string
$regex
)Creates a new regular expression.
Список параметров
-
regex
-
Regular expression string of the form /expr/flags.
Возвращаемые значения
Returns a new regular expression.
Примеры
Пример #1 MongoRegex::__construct() example
This example uses a regular expression to query for all documents with a username field starting (^) with an l and a vowel ([aeiouy]), case-insensitive (/i).
<?php
$luke_search = new MongoRegex("/^l[aeiouy]/i");
$cursor = $collection->find(array("username" => $luke_search));
?>
Вернуться к: MongoRegex