我們可以寫以下 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中文網其他相關文章!