我是PHP MVC CI和
的新手我遇到错误。
消息:mysqli :: real_connect():php_network_getaddresses:getaddrinfo 失败:没有这样的主人知道。
以下是我传递的信息。
主机名:http://localhost:1234/Sample/
用户名:root
密码://此处密码为空
数据库:codeignitordb
端口:1234
功能
$mysqli->real_connect($hostname,
$this->username,
$this->password,
$this->database,
$port,
$socket,
$client_flags);
此处$socket
和$client_flags
为Null
答案 0 :(得分:3)
主机名只能是localhost
,而不是http://localhost:1234/Sample/
答案 1 :(得分:2)
尝试使用127.0.0.1
或
localhost
作为您的主机名