通过php快速统计某个数据库中每张表的数据量

前端之家收集整理的这篇文章主要介绍了通过php快速统计某个数据库中每张表的数据量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

所以自己简单写了几行代码用来实现以上需求 执行结果:

<IMG alt="" src="https://files.jb51.cc/file_images/article/201209/201209042218202.png"&gt;<div class="codetitle">

<a style="CURSOR: pointer" data="24634" class="copybut" id="copybut24634" onclick="doCopy('code24634')"> 代码如下:
<div class="codebody" id="code24634">
<?PHP
$conn=MysqL_connect('localhost','root','');
MysqL_select_db('数据库',$conn);
$sql="SELECT information_schema.TABLES.TABLE_NAME FROM information_schema. TABLES WHERE table_schema = '数据库'";
$res=MysqL_query($sql);
while ($result = MysqL_fetch_assoc($res)) {
$tables[]=$result['TABLE_NAME'];
};
echo "<table>

<tr>
<td>表名</td>
<td>数据量</td>
</tr>";
foreach ($tables as $k=>$v){
$sql_count="select count(id) AS nums,'".$v."' from ".$tables[$k];
$res_count=MysqL_query($sql_count);
$result_count = MysqL_fetch_assoc($res_count);
echo "<tr><td>".$result_count[$v].'</td><td>'.$result_count['nums'].'</td></tr>';
}
echo "</table>"
?>

原文链接:https://www.f2er.com/php/27031.html

猜你在找的PHP相关文章