MongoDB\BSON\Regex::getFlags

(mongodb >=1.0.0)

MongoDB\BSON\Regex::getFlagsReturns the Regex's flags

설명

final public ReturnType MongoDB\BSON\Regex::getFlags ( void )

인수

이 함수는 인수가 없습니다.

반환값

Returns the Regex's flags.

오류/예외

예제

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

<?php

$regex 
= new MongoDB\BSON\Regex('regex''i');
var_dump($regex->getFlags());

?>

위 예제의 출력 예시:

string(1) "i"
add a note add a note

User Contributed Notes

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