The MongoDB\BSON\Regex class

(mongodb >=1.0.0)

简介

BSON type for a regular expression pattern and optional » flags.

Note:

This BSON type is mainly used when querying the database. Alternatively, the » $regex query operator may be used.

类摘要

MongoDB\BSON\Regex implements MongoDB\BSON\RegexInterface , MongoDB\BSON\Type , Serializable , JsonSerializable {
/* 方法 */
final public __construct ( string $pattern [, string $flags = "" ] )
final public string getFlags ( void )
final public string getPattern ( void )
final public mixed jsonSerialize ( void )
final public string serialize ( void )
final public string __toString ( void )
final public void unserialize ( string $serialized )
}

更新日志

版本 说明
1.2.0 Implements Serializable and JsonSerializable.

Table of Contents

User Contributed Notes

aws dot htc at gmail dot com 28-Sep-2016 03:26
Example
Find names that start with "Al"

$regex = new MongoDB\BSON\Regex ( '^Al');
$cursor = $collection->find(array('name' => $regex));
//iterate through the cursor