PHP mysqli_change_user() 函數(shù)
PHP mysqli_change_user() 函數(shù)
實例
改變指定數(shù)據(jù)庫連接的用戶:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢查連接
if (mysqli_connect_errno($con))
{
echo "連接數(shù)據(jù)庫失敗: " . mysqli_connect_error();
}
// 切換數(shù)據(jù)庫
mysqli_change_user($link, "my_user", "my_password", "my_test");
mysqli_close($con);
?>
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢查連接
if (mysqli_connect_errno($con))
{
echo "連接數(shù)據(jù)庫失敗: " . mysqli_connect_error();
}
// 切換數(shù)據(jù)庫
mysqli_change_user($link, "my_user", "my_password", "my_test");
mysqli_close($con);
?>
定義和用法
mysqli_change_user() 函數(shù)改變指定數(shù)據(jù)庫連接的用戶,并設置當前數(shù)據(jù)庫。
語法
mysqli_change_user(connection,username,password,dbname);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
username | 必需。規(guī)定 MySQL 用戶名。 |
password | 必需。規(guī)定 MySQL 密碼。 |
dbname | 必需。規(guī)定要改變的新數(shù)據(jù)庫。 |
技術細節(jié)
返回值: | 如果成功則返回 TRUE,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5+ |

相關文章
- PHP 字符串
- PHP Cookie
- PHP Session
- PHP JSON
- PHP array_chunk() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_merge() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP compact() 函數(shù)
- PHP each() 函數(shù)
- PHP key() 函數(shù)
- PHP reset() 函數(shù)
- PHP rsort() 函數(shù)
- PHP Filter 函數(shù)
- PHP 5 MySQLi 函數(shù)