首頁  >  文章  >  後端開發  >  php如何刪除資料庫

php如何刪除資料庫

angryTom
angryTom原創
2019-10-19 16:09:204716瀏覽

php如何刪除資料庫

php如何刪除資料庫

#1、先查看有哪些資料庫

php如何刪除資料庫

2、使用php刪除test2

<?php
$dbhost = &#39;localhost&#39;;  // mysql服务器主机地址
$dbuser = &#39;root&#39;;            // mysql用户名
$dbpass = &#39;root&#39;;          // mysql用户名密码
$conn = mysqli_connect($dbhost, $dbuser, $dbpass);
if(! $conn )
{
    die(&#39;连接失败: &#39; . mysqli_error($conn));
}
$sql = &#39;DROP DATABASE test2&#39;;
$retval = mysqli_query( $conn, $sql );
if(! $retval )
{
    die(&#39;删除数据库失败: &#39; . mysqli_error($conn));
}
echo "数据库 test2 删除成功\n";
mysqli_close($conn);
?>

#3、執行php程式

php如何刪除資料庫

3、再一次檢視資料庫

php如何刪除資料庫

test2沒有了,刪除成功!

 更多PHP相關知識,請造訪PHP中文網

以上是php如何刪除資料庫的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:php500網路錯誤下一篇:php500網路錯誤