Docs Menu

MongoDB\Model\DatabaseInfo::getSizeOnDisk()

MongoDB\Model\DatabaseInfo::getSizeOnDisk()

Return the total size of the database file on disk in bytes.

function getSizeOnDisk(): integer

The total size of the database file on disk in bytes.

<?php
$info = new DatabaseInfo(['sizeOnDisk' => 1048576]);
var_dump($info->getSizeOnDisk());

The output would then resemble:

int(1048576)