执行结果:
复制代码 代码如下:
<?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>
<tbody>
<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 "</tbody></table>"
?>
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!