標籤:mysqli sql 訊息 ade inf text line pad query
<?php/** * 產生mysql資料字典 */header("Content-type:text/html;charset=utf-8");// 設定資料庫$database = array();$database[‘DB_HOST‘] = ‘119.23.140.154‘;$database[‘DB_NAME‘] = ‘haiyi‘;$database[‘DB_USER‘] = ‘root‘;$database[‘DB_PWD‘] = ‘zpYxW5qxaSeL5aTk‘;$conn = mysqli_connect("{$database[‘DB_HOST‘]}", "{$database[‘DB_USER‘]}", "{$database[‘DB_PWD‘]}", $database[‘DB_NAME‘]);if ($conn->connect_error) { die("串連失敗: " . $conn->connect_error);}mysqli_query("set names utf8");$result = $conn->query(‘show tables‘, $mysql_conn);if ($result->num_rows > 0) { // 取得所有表名 while ($row = $result->fetch_array()) { $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 = $conn->query($sql); while ($t = $table_result->fetch_array()) { $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 = $conn->query($sql); while ($t = $field_result->fetch_array()) { $fields[] = $t; } $tables[$k][‘COLUMN‘] = $fields;}$conn->close();$html = ‘‘;// 迴圈所有表//print_r($tables);foreach($tables as $k => $v){ $html .= ‘<table 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‘] == ‘YES‘ ? ‘是‘:‘否‘) . ‘</td>‘; $html .= ‘<td class="c5">‘ . ($f[‘EXTRA‘] == ‘auto_increment‘?‘是‘:‘ ‘) . ‘</td>‘; $html .= ‘<td class="c6">‘ . $f[‘COLUMN_COMMENT‘] . ‘</td>‘; $html .= ‘</tr>‘; } $html .= ‘</tbody></table></p>‘;}/* 產生word *///header ( "Content-type:application/vnd.ms-word" );//header ( "Content-Disposition:attachment;filename={$database[‘DB_NAME‘]}資料字典.doc" );/* 產生excel*///header ( "Content-type:application/vnd.ms-excel" );//header ( "Content-Disposition:attachment;filename={$database[‘DB_NAME‘]}資料字典.xls" );// 輸出echo ‘<html> <meta charset="utf-8"> <title>自動產生資料字典</title> <style> body,td,th {font-family:"宋體"; font-size:12px;} table,h1,p{width:960px;margin:0px auto;} table{border-collapse:collapse;border:1px solid #CCC;background:#efefef;} table caption{text-align:left; background-color:#fff; line-height:2em; font-size:14px; font-weight:bold; } table th{text-align:left; font-weight:bold;height:26px; line-height:26px; font-size:12px; border:1px solid #CCC;padding-left:5px;} table td{height:20px; font-size:12px; border:1px solid #CCC;background-color:#fff;padding-left:5px;} .c1{ width: 150px;} .c2{ width: 150px;} .c3{ width: 80px;} .c4{ width: 100px;} .c5{ width: 100px;} .c6{ width: 300px;} </style> <body>‘;echo ‘<h1 style="text-align:center;">‘.$database[‘DB_NAME‘].‘資料字典</h1>‘;echo ‘<p style="text-align:center;margin:20px auto;">產生時間:‘ . date(‘Y-m-d H:i:s‘) . ‘</p>‘;echo $html;echo ‘<p style="text-align:left;margin:20px auto;">總共:‘ . count($tables) . ‘個資料表</p>‘;echo ‘</body></html>‘;?>
PHP連資料庫產生資料字典