MongoDB\Collection::withOptions()
定义
参数
$options
: array指定所需选项的数组。
Return Values
一个MongoDB\Collection
对象。
错误/异常
MongoDB\Exception\InvalidArgumentException
用于与参数或选项解析相关的错误。
例子
以下示例将克隆具有新读取偏好的现有 Collection 对象:
$collection = (new MongoDB\Client)->selectCollection('test', 'restaurants'); $newCollection = $sourceCollection->withOptions([ 'readPreference' => new MongoDB\Driver\ReadPreference('primaryPreferred'), ]);