Docs Menu

Docs HomePHP Library Manual

MongoDB\Database::modifyCollection()

On this page

  • Definition
  • Parameters
  • Return Values
  • Errors/Exceptions
  • Example
  • See Also

New in version 1.4.

MongoDB\Database::modifyCollection()

Modifies a collection or view according to the specified $collectionOptions.

function modifyCollection(
string $collectionName,
array $collectionOptions,
array $options = []
): array|object
$collectionName : string
The name of the collection or view to modify.
$collectionOptions : array
Collection or view options to assign.
$options : array

An array specifying the desired options.

Name
Type
Description
comment
mixed

Enables users to specify an arbitrary comment to help trace the operation through the database profiler, currentOp output, and logs.

This option is available since MongoDB 4.4 and will result in an exception at execution time if specified for an older server version.

New in version 1.13.

session

Client session to associate with the operation.

typeMap
array

The type map to apply to cursors, which determines how BSON documents are converted to PHP values. Defaults to the database's type map.

This will be used for the returned command result document.

writeConcern

Write concern to use for the operation. Defaults to the database's write concern.

An array or object with the result document of the collMod command.

MongoDB\Exception\InvalidArgumentException for errors related to the parsing of parameters or options.

MongoDB\Driver\Exception\RuntimeException for other errors at the driver level (e.g. connection errors).

The following example changes the expiration time of a TTL collection in the test database:

<?php
$db = (new MongoDB\Client)->test;
$result = $db->modifyCollection('users', [
'keyPattern' => ['lastAccess' => 1],
'expireAfterSeconds' => 1000
]);
var_dump($result);

The output would then resemble:

object(stdClass)#2779 {
["expireAfterSeconds_old"]=>
int(3)
["expireAfterSeconds_new"]=>
int(1000)
["ok"]=>
float(1)
}
  • collMod command reference in the MongoDB manual

←  MongoDB\Database::listCollections()MongoDB\Database::renameCollection() →