遍历数据库结构
<?php
/**
* 生成mysql数据字典
*/
header("content-type: text/html; charset=utf-8");
//配置数据库
$dbserver = "localhost";
$dbusername = "root";
$dbpassword = "";
$database = "fw";
//其他配置
$mysql_conn = @mysql_connect("$dbserver", "$dbusername", "$dbpassword") or die("mysql connect is error.");
mysql_select_db($database, $mysql_conn);
mysql_query('set names utf8', $mysql_conn);
$table_result = mysql_query('show tables', $mysql_conn);
$no_show_table = array(); //不需要显示的表
$no_show_field = array(); //不需要显示的字段
//取得所有的表名
while($row = mysql_fetch_array($table_result)){
if(!in_array($row[0],$no_show_table)){
$tables[]['table_name'] = $row[0];
}
}
//替换所以表的表前缀
if($_get['prefix']){
$prefix = 'ych';
foreach($tables as $key => $val){
$tablename = $val['table_name'];
$string = explode('_',$tablename);
if($string[0] != $prefix){
$string[0] = $prefix;
$newtablename = implode('_', $string);
mysql_query('rename table '.$tablename.' to '.$newtablename);
}
}
echo "替换成功!";exit();
}
//循环取得所有表的备注及表中列消息
foreach ($tables as $k=>$v) {
$sql = 'select * from ';
$sql .= 'information_schema.tables ';
$sql .= 'where ';
$sql .= "table_name = '{$v['table_name']}' and table_schema = '{$database}'";
$table_result = mysql_query($sql, $mysql_conn);
while ($t = mysql_fetch_array($table_result) ) {
$tables[$k]['table_comment'] = $t['table_comment'];
}
$sql = 'select * from ';
$sql .= 'information_schema.columns ';
$sql .= 'where ';
$sql .= "table_name = '{$v['table_name']}' and table_schema = '{$database}'";
$fields = array();
$field_result = mysql_query($sql, $mysql_conn);
while ($t = mysql_fetch_array($field_result) ) {
$fields[] = $t;
}
$tables[$k]['column'] = $fields;
}
mysql_close($mysql_conn);
$html = '';
//循环所有表
foreach ($tables as $k=>$v) {
$html .= ' <h3>' . ($k + 1) . '、' . $v['table_comment'] .' ('. $v['table_name']. ')</h3>'."\n";
$html .= ' <table border="1" cellspacing="0" cellpadding="0" width="100%">'."\n";
$html .= ' <tbody>'."\n";
$html .= ' <tr>'."\n";
$html .= ' <th>字段名</th>'."\n";
$html .= ' <th>数据类型</th>'."\n";
$html .= ' <th>默认值</th>'."\n";
$html .= ' <th>允许非空</th>'."\n";
$html .= ' <th>自动递增</th>'."\n";
$html .= ' <th>备注</th>'."\n";
$html .= ' </tr>'."\n";
foreach ($v['column'] as $f) {
if(!is_array($no_show_field[$v['table_name']])){
$no_show_field[$v['table_name']] = array();
}
if(!in_array($f['column_name'],$no_show_field[$v['table_name']])){
$html .= ' <tr>'."\n";
$html .= ' <td class="c1">' . $f['column_name'] . '</td>'."\n";
$html .= ' <td class="c2">' . $f['column_type'] . '</td>'."\n";
$html .= ' <td class="c3">' . $f['column_default'] . '</td>'."\n";
$html .= ' <td class="c4">' . $f['is_nullable'] . '</td>'."\n";
$html .= ' <td class="c5">' . ($f['extra']=='auto_increment'?'是':' ') . '</td>'."\n";
$html .= ' <td class="c6">' . $f['column_comment'] . '</td>'."\n";
$html .= ' </tr>'."\n";
}
}
$html .= ' </tbody>'."\n";
$html .= ' </table>'."\n";
}
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>数据库数据字典</title>
<style>
body, td, th { font-family: "微软雅黑"; font-size: 14px; }
.warp{margin:auto; width:900px;}
.warp h3{margin:0px; padding:0px; line-height:30px; margin-top:10px;}
table { border-collapse: collapse; border: 1px solid #ccc; background: #efefef; }
table th { text-align: left; font-weight: bold; height: 26px; line-height: 26px;
font-size: 14px; text-align:center; border: 1px solid #ccc; padding:5px;}
table td { height: 20px; font-size: 14px; border: 1px solid #ccc; background-color: #fff; padding:5px;}
.c1 { width: 120px; }
.c2 { width: 120px; }
.c3 { width: 150px; }
.c4 { width: 80px; text-align:center;}
.c5 { width: 80px; text-align:center;}
.c6 { width: 270px; }
</style>
</head>
<body>
<div class="warp">
<?php echo $html; ?>
</div>
</body>
</html>
以上就是遍历数据库结构的内容。