我无法使用 mysqli 类登录数据库。
我得到下一个错误:
Warning: mysql_query(): Access denied for user 'www-data'@'localhost' (using password: NO)
我有下一个代码:
$this->mysqlCon = new mysqli($siteConfig['db']['hostname'], $siteConfig['db']['username'], $siteConfig['db']['password'], $siteConfig['db']['database']);
var_dump()
$siteConfig['db']
回报:
array(4) {
["hostname"]=>
string(9) "localhost"
["username"]=>
string(4) "root"
["password"]=>
string(*) "***Censored***"
["database"]=>
string(*) "***Censored***"
}
我的 VPS 正在运行Debian 6 32bit。