PHP Doku:: A string representation of this regular expression - mongoregex.tostring.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMongoDB Native DriverTypesThe MongoRegex classMongoRegex::__toString

Ein Service von Reinhard Neidl - Webprogrammierung.

The MongoRegex class

<<MongoRegex::__construct

The MongoBinData class>>

MongoRegex::__toString

(PECL mongo >= 0.8.1)

MongoRegex::__toStringA string representation of this regular expression

Beschreibung

public string MongoRegex::__toString ( void )

Returns a string representation of this regular expression.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

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

Beispiele

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

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)