MongoRegex::__toString

(PECL mongo >= 0.8.1)

MongoRegex::__toStringA string representation of this regular expression

Опис

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

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top