我在函数的参数中传递加密密码以连接数据库,但我不知道如何使用它来连接数据库?
function get_connectivity($pwd){
$host = "localhost";
$user = "root";
$pass = $pwd;
$database = "testing";
$db = new mysqli($host, $user, $pass, $database);
if ($db->connect_errno) {
return false;
exit();
}
$db->close();
return true;
}
我这样称呼它:
get_connectivity(sha1("example"));
这甚至可能吗?感谢。
答案 0 :(得分:0)
更改为此。它已经声明,只需将其传递给连接。
function get_connectivity($pwd){
$host = "localhost";
$user = "root";
$database = "testing";
$db = new mysqli($host, $user, $pwd, $database);
if ($db->connect_errno) {
return false;
exit();
}
$db->close();
return true;
}