PHP循环输出指定数据库中的表名及行数等相关信息
更新:2022-04-16 18:45:45
人气:76
来源:本站原创
A+
PHP循环输出指定数据库中的表名及行数等相关信息,第一步获取指定数据库中的表名,生成数组。
$sql_status=" SHOW TABLE STATUS FROM 数据库名"; if ($result=$mysqli->query($sql_status)){ while ($rs=$result->fetch_array()){ //用数组 $tables_row[]=$rs; } }else{ echo "Error"; exit; }
将数据库中的表名列表数组,用PHP循环输出显示出数据库中数据表的信息
<table width="100%"> <thead> <tr> <td colspan="9" align="center" style="font-size:24px;" >数据库优化及状态信息</td> </tr> </thead> <tr> <td width="12%" height="65" align="center" ><strong> 表的名<br /> Name</strong></td> <td width="9%" height="65" align="center" ><strong> 存储引擎 <br /> Engine</strong></td> <td width="7%" height="65" align="center" ><strong> 行数 <br /> Rows</strong></td> <td width="13%" height="65" align="center" ><strong> 数据文件的长度 <br /> Data_length</strong></td> <td width="11%" height="65" align="center" ><strong> 索引长度 <br /> Index_length</strong></td> <td width="11%" height="65" align="center" ><strong> Auto_increment</strong></td> <td width="16%" height="65" align="center" ><strong>Update_time</strong></td> <td width="11%" height="65" align="center" ><strong> 字符集和整序 <br /> Collation</strong></td> <td width="10%" height="65" align="center" ><strong> 评注<br /> Comment</strong></td> </tr> <? //print_r($tables_row); $i=0; foreach($tables_row as $value_row){ $mysqli->query ("optimize table ".$value_row[0]." ");//优化各个表 $i++; ?> <tr> <td height="35" align="center" ><?=$value_row[0]?></td> <td height="35" align="center" ><?=$value_row[1]?></td> <td height="35" align="center" ><?=$value_row[4]?></td> <td height="35" align="center" ><?=$value_row[6]?></td> <td height="35" align="center" ><?=$value_row[8]?></td> <td height="35" align="center" ><?=$value_row[10]?></td> <td height="35" align="center" ><?=$value_row[12]?></td> <td height="35" align="center" ><?=$value_row[14]?></td> <td height="35" align="center" ><?=$value_row[17]?></td> </tr> <? } ?> </table>
推荐的文章
Ads by Google
随手记
- ● mysql的慢查询日志记录什么
- ● js获取上传文件类型以及大小的方法
- ● windows系统如何查询openssl.cnf文件位置及更换路径
- ● SSL证书工具之CSR的作用是什么?
- ● [ssl:warn]SessionCacheisnotconfigured[hint:SSLSessionCache]原因
- ● servercertificatedoesNOTincludeanIDwhichmatchestheservername
- ● jquery怎么删除元素本身
- ● LODOP不同电脑打印效果不同排查
- ● LODOP不同打印机出现偏移问题
- ● phpmyadmin绿色中文版百度云下载
PHP经验分享