小码哥的IT人生

首页 > PHP > php基础

PHP mysql_list_dbs() 数据库 函数 详解

php基础 2022-06-06 18:44:50小码哥的IT人生shichen

PHP mysql_list_dbs() 函数

定义和用法

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

语法

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

说明

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

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

实例

<?php
$con = mysql_connect("localhost", "hello", "321");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
$db_list = mysql_list_dbs($con);
while ($db = mysql_fetch_object($db_list))
  {
  echo $db->Database . "<br />";
  }
mysql_close($con);
?>

输出类似:

mysql
test
test_db

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024