PHP mysqli_select_db() 函數(shù)
PHP mysqli_select_db() 函數(shù)
更改連接的默認(rèn)數(shù)據(jù)庫(kù):
刪除數(shù)據(jù)庫(kù)
<?php
// 假定數(shù)據(jù)庫(kù)用戶名:root,密碼:123456,數(shù)據(jù)庫(kù):RUNOOB
$con=mysqli_connect("localhost","root","123456","RUNOOB");
if (mysqli_connect_errno($con))
{
echo "連接 MySQL 失敗: " . mysqli_connect_error();
}
// ...查詢 "RUNOOB" 數(shù)據(jù)庫(kù)的一些 PHP 代碼...
// 修改數(shù)據(jù)庫(kù)為 "test"
mysqli_select_db($con,"test");
// ...查詢 "test" 數(shù)據(jù)庫(kù)的一些 PHP 代碼...
mysqli_close($con);
?>
定義和用法
mysqli_select_db() 函數(shù)用于更改連接的默認(rèn)數(shù)據(jù)庫(kù)。
語(yǔ)法
mysqli_select_db(connection,dbname);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
dbname | 必需,規(guī)定要使用的默認(rèn)數(shù)據(jù)庫(kù)。 |
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回 TRUE,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 簡(jiǎn)介
- PHP $_GET 變量
- PHP 多維數(shù)組
- PHP 文件處理
- PHP 文件上傳
- PHP Cookie
- PHP 發(fā)送電子郵件
- PHP array_chunk() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP asort() 函數(shù)
- PHP count() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Date/Time 函數(shù)