首頁  >  文章  >  後端開發  >  我們如何編寫PHP腳本來取得MySQL資料庫的清單?

我們如何編寫PHP腳本來取得MySQL資料庫的清單?

王林
王林轉載
2023-09-02 23:37:05691瀏覽

我們如何編寫PHP腳本來取得MySQL資料庫的清單?

我們可以寫以下 PHP 腳本來取得可用 MySQL 資料庫的清單 -

範例

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

   if (!$con) {
      die(&#39;Could not connect: &#39; . 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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除