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

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

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

<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"> @H_404_0@<?PHP @H_404_0@$conn=MysqLconnect('localhost','root',''); @H404_0@MysqL_select_db('数据库',$conn); @H_404_0@$sql="SELECT information_schema.TABLES.TABLE_NAME FROM information_schema. TABLES WHERE table_schema = '数据库'"; @H_404_0@$res=MysqL_query($sql); @H_404_0@while ($result = MysqL_fetchassoc($res)) { @H404_0@$tables[]=$result['TABLENAME']; @H4040@}; @H4040@echo "<table> @H4040@ @H4040@<tr> @H4040@<td>表名</td> @H4040@<td>数据量</td> @H4040@</tr>"; @H4040@foreach ($tables as $k=>$v){ @H404_0@$sqlcount="select count(id) AS nums,'".$v."' from ".$tables[$k]; @H404_0@$res_count=MysqL_query($sqlcount); @H404_0@$result_count = MysqL_fetch_assoc($rescount); @H404_0@echo "<tr><td>".$result_count[$v].'</td><td>'.$resultcount['nums'].'</td></tr>'; @H4040@} @H4040@echo "</table>" @H4040@?> @H404_0@

猜你在找的PHP相关文章