获取MongoDB数据大小
程序员文章站
2022-05-16 09:17:18
...
php代码
/** * 获取MongoDB数据大小 * @return string */ function getMongodbSize() { $m = new Mongo(); $db = $m->selectDB("数据库名"); $res = $db->execute("return db.stats()"); return ($res["retval"]["storageSize"] / 1024 / 1024) . "MB"; }