MongoRegex::__toString

(PECL mongo >= 0.8.1)

MongoRegex::__toStringA string representation of this regular expression

Opis

public MongoRegex::__toString ( void ) : string

Returns a string representation of this regular expression.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

This regular expression in the form "/expr/flags".

Przykłady

Przykład #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";

?>

Powyższy przykład wyświetli coś podobnego do:

[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