MongoRegex::__toString

(PECL mongo >= 0.8.1)

MongoRegex::__toStringA string representation of this regular expression

Descrierea

public MongoRegex::__toString ( void ) : string

Returns a string representation of this regular expression.

Parametri

Această funcție nu are parametri.

Valorile întoarse

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

Exemple

Example #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";

?>

Exemplul de mai sus va afișa ceva similar cu:

[a-fA-F0-9]{16}
g
/[a-fA-F0-9]{16}/g