欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-01 12:55:24
...

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