刪除php資料庫的方法:先建立一個PHP範例檔案;然後透過「mysql_connect」連接資料庫;最後使用SQL指令傳遞給mysql_query執行刪除一個資料庫即可。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
怎麼刪除php的資料庫?
使用 PHP 刪除 MySQL 資料庫
刪除一個資料庫
#如果資料庫不再需要那麼它將可以永遠刪除。您可以使用 SQL 指令傳遞給 mysql_query 執行刪除一個資料庫。
範例
嘗試以下範例來刪除一個資料庫。
<?php $dbhost = 'localhost:3036'; $dbuser = 'root'; $dbpass = 'rootpassword'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . mysql_error()); } $sql = 'DROP DATABASE test_db'; $retval = mysql_query( $sql, $conn ); if(! $retval ) { die('Could not delete database db_test: ' . mysql_error()); } echo "Database deleted successfully\n"; mysql_close($conn); ?>
警告:對於刪除一個資料庫和表,它是非常危險的。所以刪除任何表或資料庫之前你應該確保你所做的一切是自願的。
刪除一個表格
它透過 mysql_query 函數再次的發出一個 SQL 指令來刪除任何資料庫和資料表。但使用這個指令時要非常小心,因為這樣做你可以在你的桌面上刪除一些重要的資訊。
嘗試以下範例刪除一個表格:
<?php $dbhost = 'localhost:3036'; $dbuser = 'root'; $dbpass = 'rootpassword'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . mysql_error()); } $sql = 'DROP TABLE employee'; $retval = mysql_query( $sql, $conn ); if(! $retval ) { die('Could not delete table employee: ' . mysql_error()); } echo "Table deleted successfully\n"; mysql_close($conn); ?>
推薦學習:《PHP影片教學》
以上是怎麼刪除php的資料庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!