标签:
<?php
/**
* 生成mysql数据字典word
*/
// 配置数据库
$database = array();
$database[‘DB_HOST‘] = ‘127.0.0.1‘;
$database[‘DB_NAME‘] = ‘cqhshop‘;
$database[‘DB_USER‘] = ‘root‘;
$database[‘DB_PWD‘] = ‘123456‘;
$mysql_conn = @mysql_connect("{$database[‘DB_HOST‘]}", "{$database[‘DB_USER‘]}", "{$database[‘DB_PWD‘]}") or die("Mysql connect is error.");
mysql_select_db($database[‘DB_NAME‘], $mysql_conn);
$result = mysql_query(‘show tables‘, $mysql_conn);
mysql_query(‘SET NAME GBK‘, $mysql_conn);
// 取得所有表名
while ($row = mysql_fetch_array($result))
{
$tables[][‘TABLE_NAME‘] = $row[0];
}
// 循环取得所有表的备注及表中列消息
foreach($tables as $k => $v)
{
$sql = ‘SELECT * FROM ‘;
$sql .= ‘INFORMATION_SCHEMA.TABLES ‘;
$sql .= ‘WHERE ‘;
$sql .= "table_name = ‘{$v[‘TABLE_NAME‘]}‘ AND table_schema = ‘{$database[‘DB_NAME‘]}‘";
$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[‘DB_NAME‘]}‘";
$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 .= ‘<table style="text-align:center;" border="1" cellspacing="0" cellpadding="0" align="center">‘;
$html .= ‘<caption>表名:‘ . $v[‘TABLE_NAME‘] . ‘ ‘ . $v[‘TABLE_COMMENT‘] . ‘</caption>‘;
$html .= ‘<tbody><tr><th>字段名</th><th>数据类型</th><th>默认值</th><th>允许非空</th><th>自动递增</th><th>备注</th></tr>‘;
$html .= ‘‘;
foreach($v[‘COLUMN‘] AS $f)
{
$html .= ‘<td class="c1">‘ . $f[‘COLUMN_NAME‘] . ‘</td>‘;
$html .= ‘<td class="c2">‘ . $f[‘COLUMN_TYPE‘] . ‘</td>‘;
$html .= ‘<td class="c3">‘ . $f[‘COLUMN_DEFAULT‘] . ‘</td>‘;
$html .= ‘<td class="c4">‘ . $f[‘IS_NULLABLE‘] . ‘</td>‘;
$html .= ‘<td class="c5">‘ . ($f[‘EXTRA‘] == ‘auto_increment‘?‘是‘:‘ ‘) . ‘</td>‘;
$html .= ‘<td class="c6">‘ . $f[‘COLUMN_COMMENT‘] . ‘</td>‘;
$html .= ‘</tr>‘;
}
$html .= ‘</tbody></table>‘;
$html .= ‘<br /><br />‘;
}
// 输出
header ( "Content-type:application/vnd.ms-word" );
header ( "Content-Disposition:attachment;filename={$database[‘DB_NAME‘]}数据字典.doc" );
echo $html;
?>
标签:
原文地址:http://www.cnblogs.com/chenqionghe/p/4593628.html