首頁 > 後端開發 > PHP問題 > php如何刪除資料庫

php如何刪除資料庫

angryTom
發布: 2023-02-27 13:24:02
原創
4743 人瀏覽過

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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板