php计算mysql数据库的大小

PHP 1529 0 2015-02-06

php计算mysql数据库的大小
function CalcFullDatabaseSize($database, $db) {
  
    $tables = mysql_list_tables($database, $db);
    if (!$tables) { return -1; }
  
    $table_count = mysql_num_rows($tables);
    $size = 0;
  
    for ($i=0; $i < $table_count; $i++) {
        $tname = mysql_tablename($tables, $i);
        $r = mysql_query("SHOW TABLE STATUS FROM ".$database." LIKE '".$tname."'");
        $data = mysql_fetch_array($r);
        $size += ($data['Index_length'] + $data['Data_length']);
    };
  
    $units = array(' B', ' KB', ' MB', ' GB', ' TB');
    for ($i = 0; $size > 1024; $i++) { $size /= 1024; }
    return round($size, 2).$units[$i];
}
 
 
/*
** Example:
*/
  
// open mysql connection:
$handle = mysql_connect('localhost', 'user', 'password');
  
if (!$handle) { die('Connection failed!'); }
  
// get the size of all tables in this database:
print CalcFullDatabaseSize('customer1234', $handle);
// --> returns something like: 484.2 KB
  
// close connection:
mysql_close($handle);

上一篇:写了websocket个聊天室,然后终于弄懂了php的socket

下一篇:PHP中把stdClass Object转array的几个方法

讨论数量:0

请先登录再发表讨论。 2024-04-26

天涯网魂
3 杠 5 星
TA 的文章
TA 的随言
TA 的资源链