2023-09-03

我们如何编写PHP脚本来获取MySQL数据库的列表?


我们如何编写PHP脚本来获取MySQL数据库的列表?

我们可以编写以下 PHP 脚本来获取可用 MySQL 数据库的列表 –

示例

<?php
   $con = mysql_connect("localhost", "userid", "password");

   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);
?>
登录后复制

以上就是我们如何编写PHP脚本来获取MySQL数据库的列表?的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/601299.html

发表回复

Your email address will not be published. Required fields are marked *