Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16278 программистов и 1782 робота. Сейчас ищет 1941 программист ...
MongoRegex::__toString - A string representation of this regular expression
Вернуться к: MongoRegex
MongoRegex::__toString
(PECL mongo >= 0.8.1)
MongoRegex::__toString — A string representation of this regular expression
This extension that defines this method is deprecated. Instead, the MongoDB extension should be used. Alternatives to this method include:
Описание
public string MongoRegex::__toString
( void
)
Returns a string representation of this regular expression.
Список параметров
У этой функции нет параметров.
Возвращаемые значения
This regular expression in the form "/expr/flags".
Примеры
Пример #1 MongoRegex::__toString() example
<?php
$r = new MongoRegex( "/[a-fA-F0-9]{16}/g" );
echo $r->regex . "\n";
echo $r->flags . "\n";
echo "$r\n";
?>
Результатом выполнения данного примера будет что-то подобное:
[a-fA-F0-9]{16} g /[a-fA-F0-9]{16}/g
Вернуться к: MongoRegex