PHP mysql_list_dbs() 函数

定义和用法

mysql_list_dbs() 函数列出 MySQL 服务器中所有的数据库。

语法

  1. mysql_list_dbs(connection)
参数 描述
connection 可选。规定 SQL 连接标识符。如果未规定,则使用上一个打开的连接。

说明

mysql_list_dbs() 将返回一个结果指针,包含了当前 MySQL 进程中所有可用的数据库。

用 mysql_tablename() 函数来遍历此结果指针,或者任何使用结果表的函数,例如 mysql_fetch_array()

例子

  1. <?php
  2. $con = mysql_connect("localhost", "hello", "321");
  3. if (!$con)
  4. {
  5. die('Could not connect: ' . mysql_error());
  6. }
  7.  
  8. $db_list = mysql_list_dbs($con);
  9.  
  10. while ($db = mysql_fetch_object($db_list))
  11. {
  12. echo $db->Database . "<br />";
  13. }
  14.  
  15. mysql_close($con);
  16. ?>

输出类似:

  1. mysql
  2. test
  3. test_db