MongoDB\Model\CollectionInfo Class
Definition
MongoDB\Model\CollectionInfo
This class models information about a collection. Instances of this class are returned by traversing an
Iterator, which is returned by theMongoDB\Database::listCollections()
method.
Changed in version 1.4: This class implements PHP's ArrayAccessinterface. This provides a mechanism for accessing index fields for which there exists no helper method. isset()may be used to check for the existence of a field before accessing it with []
.
Note
The MongoDB\Model\CollectionInfo
class is immutable. Attempting to modify it via the ArrayAccessinterface will result in a MongoDB\Exception\BadMethodCallException
.