MongoDB\BSON\Regex::__toString

(mongodb >=1.0.0)

MongoDB\BSON\Regex::__toStringReturns the string representation of this Regex

Descrierea

final public MongoDB\BSON\Regex::__toString ( void ) : string

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the string representation of this Regex.

Exemple

Example #1 MongoDB\BSON\Regex::__toString() example

<?php

$regex 
= new MongoDB\BSON\Regex('regex''i');
var_dump((string) $regex);

?>

Exemplul de mai sus va afișa:

string(8) "/regex/i"

A se vedea și