Statement on glibc/iconv Vulnerability

MongoDB\BSON\Regex::__toString

(mongodb >=1.0.0)

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

Descrizione

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

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the string representation of this Regex.

Esempi

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

<?php

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

?>

Il precedente esempio visualizzerà:

string(8) "/regex/i"

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top