定義和用法
這個mysqli_change_user()函數接受連接對象、用戶名、密碼和數據庫名稱作為參數,將給定連接對象中的用戶和數據庫更改為指定的用戶和數據庫。
用法
mysqli_change_user($con, $user, $password, $database);
參數
Sr.No | 參數及說明 |
---|---|
1 |
con(Mandatory) 這是一個表示與 MySQL 服務器的連接的對象。 |
2 |
user(Optional) 這是您需要更改為的 MySQL 用戶的名稱。 |
3 |
password(Optional) 這是指定 MySQL 用戶的密碼 |
3 |
database(Optional) 這表示您需要更改為的數據庫的名稱。如果您將 NULL 作為值傳遞給此參數,則此函數隻會更改用戶而不選擇數據庫。 |
返回值
PHP mysqli_change_user() 函數返回一個布爾值,如果數據庫更改成功則為真,否則為假。
PHP版本
這個函數最初是在 PHP 版本 5 中引入的,適用於所有後續版本。
示例
以下示例演示了 mysqli_change_user() 函數的用法(程序風格) -
<?php
//Creating a connection
$con = mysqli_connect("localhost", "root", "password", "mydb");
$res = mysqli_change_user($con, "Tutorialspoint", "abc123", "mydb");
if($res){
print("User changed successfully");
}else{
print("Sorry Couldn't change the user");
}
//Closing the connection
mysqli_close($con);
?>
這將產生以下結果 -
User changed successfully
示例
在麵向對象的風格中,這個函數的語法是 $con->change_user();以下是麵向對象樣式 $minus 中此函數的示例;
<?php
$host = "localhost";
$username = "root";
$passwd = "password";
$dbname = "mydb";
//Creating a connection
$con = new mysqli($host, $username, $passwd, $dbname);
$res = $con->change_user("Tutorialspoint", "abc123", "mydb");
if($res){
print("User changed successfully");
}else{
print("Sorry couldn't change the user");
}
//Closing the connection
$res = $con -> close();
?>
這將產生以下結果 -
User changed successfully
示例
您可以在更改後驗證數據庫名稱,如下所示 -
//Creating a connection
$con = mysqli_connect("localhost", "root", "password", "mydb");
//Changing the database
$res = mysqli_change_user($con, "Tutorialspoint", "abc123", "mydb");
$list = mysqli_query($con, "SELECT DATABASE()");
if($list) {
$row = mysqli_fetch_row($list);
print("Current Database:". $row[0]);
}
//Closing the connection
mysqli_close($con);
?>
這將產生以下結果 -
Current Database:mydb
示例
<?php
$connection = mysqli_connect("localhost","root","password","mydb");
if (mysqli_connect_errno($connection)){
echo "Failed to connect to MySQL:" . mysqli_connect_error();
}
mysqli_change_user($connection, "myuser", "abc123", "sampledb");
mysqli_close($connection);
?>
相關用法
- PHP mysqli_character_set_name()用法及代碼示例
- PHP mysqli_connect_error()用法及代碼示例
- PHP mysqli_commit()用法及代碼示例
- PHP mysqli_connect_errno()用法及代碼示例
- PHP mysqli_connect()用法及代碼示例
- PHP mysqli_close()用法及代碼示例
- PHP mysqli_get_server_info()用法及代碼示例
- PHP mysqli_data_seek()用法及代碼示例
- PHP mysqli_insert_id()用法及代碼示例
- PHP mysqli_fetch_assoc()用法及代碼示例
- PHP mysqli_fetch_all()用法及代碼示例
- PHP mysqli_next_result()用法及代碼示例
- PHP mysqli_stmt_affected_rows()用法及代碼示例
- PHP mysqli_begin_transaction()用法及代碼示例
- PHP mysqli_real_escape_string()用法及代碼示例
- PHP mysqli_fetch_lengths()用法及代碼示例
- PHP mysqli_free_result()用法及代碼示例
- PHP mysqli_fetch_row()用法及代碼示例
- PHP mysqli_debug()用法及代碼示例
- PHP mysqli_fetch_field()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP mysqli_change_user() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。