首頁 > 後端開發 > php教程 > php列出mysql指定資料庫中的所有表

php列出mysql指定資料庫中的所有表

WBOY
發布: 2016-07-25 08:42:55
原創
740 人瀏覽過

php列出mysql指定数据库中的所有表

  1. if (!function_exists('mysql_list_db_tables')) {
  2. function mysql_list_db_tables($database) {
  3. $tables = Array();
  4. $results = mysql_query('SHOW TABLES FROM ' . $database);
  5. while($row = @mysql_fetch_assoc($results)) { $tables[] = $row['Tables_in_' . $database]; }
  6. return $tables;
  7. }
  8. }
复制代码

資料庫中, php, mysql


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板