Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
The MongoRegex class
(Информация о версии неизвестна, возможно, только в SVN)
Введение
This class can be used to create regular expressions. Typically, these expressions will be used to query the database and find matching strings. More unusually, they can be saved to the database and retrieved.
Mongo recognizes six regular expression flags:
- i
Case insensitive
- m
Multiline
- x
Can contain comments
- l
locale
- s
dotall, "." matches everything, including newlines
- u
match unicode
Обзор классов
MongoRegex {
/* Fields */
public string $MongoRegex->regex ;
public string $flags ;
/* Методы */
MongoRegex::__construct ( string $regex )
public string MongoRegex::__toString ( void )
}
Содержание
- MongoRegex::__construct — Creates a new regular expression
- MongoRegex::__toString — A string representation of this regular expression
Описание класса mongoregex, примеры использования класса mongoregex.
Смотрите также:
Описание на ru2.php.net
Описание на php.ru