quer......"/>
欢迎访问WDPHP素材源码!今天是2024年04月30日 星期二,记得吃早餐哦!
您好,游客 [ 马上登录 | 注册帐号 | 微信登录 | QQ登录]
当前位置:首页 > 教程 > PHP教程 > 

PHP循环输出指定数据库中的表名及行数等相关信息
栏目分类:PHP教程    发布日期:2023-09-05    浏览次数:325次     收藏

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>


源码 模板 特效 素材 资源 教程 站长