MongoRegex
在线手册:中文 英文
PHP手册

MongoRegex::__toString

(PECL mongo >= 0.8.1)

MongoRegex::__toStringA string representation of this regular expression

说明

public string MongoRegex::__toString ( void )

Returns a string representation of this regular expression.

参数

此函数没有参数。

返回值

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

范例

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

?>

以上例程的输出类似于:

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


MongoRegex
在线手册:中文 英文
PHP手册