php列出mysql数据库中所有表

发布时间:2020-04-16编辑:脚本学堂
php列出mysql指定数据库中所有表的实现代码,mysql_list_db_tables自定义函数,用到了mysql_fetch_assoc方法,一起学习下。

代码:
 

复制代码 代码示例:
if (!function_exists('mysql_list_db_tables')) {
   function mysql_list_db_tables($database) {
      $tables = Array();
      $results = mysql_query('SHOW TABLES FROM ' . $database);
      while($row = @mysql_fetch_assoc($results)) { $tables[] = $row['Tables_in_' . $database]; }
      return $tables;
   }
}