MongoDB\Collection::withOptions()
Definition
Parameters
$options
: arrayAn array specifying the desired options.
NameTypeDescriptioncodec
MongoDB\Codec\DocumentCodec
The default codec to use for collection operations. Defaults to the original collection's codec.
New in version 1.17.
readConcern
The default read concern to use for collection operations. Defaults to the original collection's read concern.
readPreference
The default read preference to use for collection operations. Defaults to the original collection's read preference.
typeMap
array
The type map to apply to cursors, which determines how BSON documents are converted to PHP values. Defaults to the original collection's type map.
writeConcern
The default write concern to use for collection operations. Defaults to the original collection's write concern.
Return Values
A MongoDB\Collection
object.
Errors/Exceptions
MongoDB\Exception\InvalidArgumentException
for errors related to
the parsing of parameters or options.
Example
The following example clones an existing Collection object with a new read preference:
$collection = (new MongoDB\Client)->selectCollection('test', 'restaurants'); $newCollection = $sourceCollection->withOptions([ 'readPreference' => new MongoDB\Driver\ReadPreference('primaryPreferred'), ]);