- Reference >
- MongoDB\Collection Class >
- MongoDB\Collection::rename()
MongoDB\Collection::rename()
New in version 1.10.
On this page
Definition
-
MongoDB\Collection::rename Rename the collection.
This method has the following parameters:
Parameter Type Description $toCollectionNamestring The new name of the collection. $toDatabaseNamestring Optional. The new database name of the collection. If a new database name is not specified, the database of the original collection will be used. If the new name specifies a different database, the command copies the collection to the new database and drops the source collection. $optionsarray Optional. An array specifying the desired options. The
$optionsparameter supports the following options:Option Type Description typeMaparray Optional. The type map to apply to cursors, which determines how BSON documents are converted to PHP values. Defaults to the collection’s type map.
This will be used for the returned command result document.
sessionMongoDB\Driver\Session Optional. Client session to associate with the operation.
Sessions are not supported for server versions prior to 3.6.
writeConcernMongoDB\Driver\WriteConcern Optional. Write concern to use for the operation. Defaults to the collection’s write concern.
It is not possible to specify a write concern for individual operations as part of a transaction. Instead, set the
writeConcernoption when starting the transaction with startTransaction.This is not supported for server versions prior to 3.4 and will result in an exception at execution time if used.
dropTargetboolean Optional. If true, MongoDB will drop the target before renaming the collection. The default value isfalse.
Return Values
An array or object with the result document of the renameCollection command. The return type will depend on the
typeMap option.
Errors/Exceptions
MongoDB\Exception\UnsupportedException if options are used and
not supported by the selected server (e.g. collation, readConcern,
writeConcern).
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).
Example
The following operation renames the restaurants collection in the test
database to places:
The output would then resemble:
object(MongoDB\Model\BSONDocument)#9 (1) {
["storage":"ArrayObject":private]=>
array(1) {
["ok"]=>
float(1)
}
}
See Also
MongoDB\Database::renameCollection()- renameCollection command reference in the MongoDB manual