定义和用法
这个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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。