Home > php教程 > php手册 > 如何列出mysql 服务器的所有数据库 mysql_db_name

如何列出mysql 服务器的所有数据库 mysql_db_name

WBOY
Release: 2016-06-13 10:07:10
Original
1162 people have browsed it

如何列出mysql 服务器的所有数据库 mysql_db_name

定义和用法
该mysql_db_name ( )函数认为,从数据库名称呼吁mysql_list_dbs ( )函数。

这个函数返回数据库名称上的成功,或FALSE的失败。

语法

mysql_db_name(list,row,field)
Copy after login
Copy after login
Copy after login
list 必需的。结果指针指定的mysql_list_dbs ( )函数
row 必需的。指定哪些行指数的结果指针返回。始于零。
field 可以,数据库名
来看看mysql_db_name的实例吧.
Copy after login
Copy after login
Copy after login
<pre class="brush:php;toolbar:false">$db_list = mysql_list_dbs($con);
Copy after login
$i = 0;
$db_count = mysql_num_rows($db_list);
while ($i ";
  $i++;
  }
Copy after login
?>
Copy after login
 
Copy after login
输出结果是你当前服务器的所有数据库哦.
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template