Php/docs/mongoregex.tostring

From Get docs

MongoRegex::__toString

(PECL mongo >= 0.8.1)

MongoRegex::__toStringA 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:

Description

public MongoRegex::__toString ( ) : string

Returns a string representation of this regular expression.


Parameters

This function has no parameters.


Return Values

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


Examples

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";?>

The above example will output something similar to:


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