update : 2015.11.03
php.shukuma.com

검색:
 
 
A string representation of this regular expression

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