自 1.9 版起已弃用。
定义
MongoDB\Model\CollectionInfo::getCappedMax()
返回固定大小集合的文档限制。 这与
MongoDB\Database::createCollection()
的max
选项相关。function getCappedMax(): integer|null
Return Values
固定大小集合的文档限制。 如果集合未设定上限,则返回null
。
此方法已弃用,取而代之的是使用MongoDB\Model\CollectionInfo::getOptions()
和访问max
密钥。
示例
$db = (new MongoDB\Client)->test; // Creates a capped collection with a document limit of 100 $db->createCollection( 'myCappedCollection', ['capped' => true, 'size' => 1048576, 'max' => 100] ); // Retrieves the document limit for the capped collection foreach ($db->listCollections(['filter' => ['name' => 'myCappedCollection']]) as $info) { var_dump($info->getCappedMax()); }
而输出将类似如下所示:
int(100)