欢迎您来到,李雷博客 | PHP博客        登录  |  注册

PHP循环输出指定数据库中的表名及行数等相关信息

更新:2022-04-16 18:45:45
人气:895
来源:本站原创
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
  联系博主
Hello,本博客系统采用PHP和MySql开发,程序开发完全是因为个人爱好,是自己纯手写PHP源代码,未采用任何PHP框架!
QQ:858353007   微信号:lileihot123
网站地图
会员服务
关于我们
QQ:858353007
 
广告服务
加我微信
移动端访问
 
 
Copyright © 2014- 2025 www.mdaima.com All Rights Reserved.
李雷博客,专注PHP经验、PHP教程及PHP源代码开源下载分享的PHP博客!   ICP备案号:京ICP备10202169号-4