我正尝试连接到数据库,但出现以下错误:php_network_getaddresses: getaddrinfo failed: nodename nor servname provided, or not known.
我正在使用Mamp Pro 4.5.0
,这是我当前的设置。
public function Connect() {
$this->link = mysqli_connect($this->hostname, $this->username, $this->password, $this->database) or $this->error(mysqli_connect_error());
$this->connected = true;
}
如果需要,我可以发布我的配置文件和mysql类文件的完整版本。
答案 0 :(得分:1)
我知道了!所以我的错误是我调用了$ core-> config ['MySQL'] [“]来调用$ config ['MySQL'] [”]。当我在旧版本的PHP上进行编码时,我就是这么称呼它的,而我在类中列出了所有内容。谢谢大家的帮助。