MongoRegex
PHP Manual

MongoRegex::__toString

(PECL mongo >= 0.8.1)

MongoRegex::__toStringA string representation of this regular expression

Descrição

public string MongoRegex::__toString ( void )

Returns a string representation of this regular expression.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

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

Exemplos

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

?>

O exemplo acima irá imprimir algo similar à:

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


MongoRegex
PHP Manual