php计算整个mysql数据库大小的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-29 14:37:00 浏览: 评论:0
这篇文章主要介绍了php计算整个mysql数据库大小的方法,涉及php操作MySQL数据库的相关技巧,需要的朋友可以参考下
本文实例讲述了php计算整个mysql数据库大小的方法。分享给大家供大家参考。具体如下:
这里用MB,KB或者GB的格式返回计算结果。
- 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);
Tags: mysql数据库大小
- 上一篇:php判断访问IP的方法
- 下一篇:php实现随机生成易于记忆的密码
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)