mysql_list_dbs
(PHP 4, PHP 5)
mysql_list_dbs — 列出 MySQL 服务器中所有的数据库
<h3>说明</h3>
resource <strong>mysql_list_dbs</strong>
([ resource <code>$link_identifier</code>
] )
<p>
<strong>mysql_list_dbs()</strong> 将返回一个结果指针,包含了当前
MySQL 进程中所有可用的数据库。用
mysql_tablename()
函数来遍历此结果指针,或者任何使用结果表的函数,例如
mysql_fetch_array()。
</p>
<p>
<p><strong>Example #1 <strong>mysql_list_dbs()</strong> 例子</strong></p>
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
$db_list = mysql_list_dbs($link);
while ($row = mysql_fetch_object($db_list)) {
echo $row->Database . "n";
}
?>
<p>
以上例子将产生如下输出:
</p>
database1 database2 database3 ...
</p>
<p><strong>Note</strong>:
<p>
以上代码用起来和
mysql_fetch_row()
或类似函数一样简单。
</p>
</p>
<p>
为向下兼容仍然可以使用
<strong>mysql_listdbs()</strong>,但反对这样做。
</p>
<p>
参见 mysql_db_name()。
</p>