MongoDB\Model\CollectionInfo::isCapped()
On this page
Deprecated since version 1.9.
Definition
MongoDB\Model\CollectionInfo::isCapped()
Return whether the collection is a capped collection.
function isCapped(): boolean
Return Values
A boolean indicating whether the collection is a capped collection.
This method is deprecated in favor of using
MongoDB\Model\CollectionInfo::getOptions()
and accessing the
capped
key.
Examples
$info = new CollectionInfo([ 'name' => 'foo', 'options' => [ 'capped' => true, 'size' => 1048576, ] ]); var_dump($info->isCapped());
The output would then resemble:
bool(true)
See Also
Capped Collections in the MongoDB manual
listCollections command reference in the MongoDB manual