gpt4 book ai didi

postgresql - PostgreSQL 和 XAMPP 之间的错误连接

转载 作者:行者123 更新时间:2023-11-29 13:20:22 25 4
gpt4 key购买 nike

谁能帮我解决连接 PostgreSQL 和 XAMPP 的问题?

错误是:

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Misc has a deprecated constructor in C:\xampp\phpPgAdmin\classes\Misc.php on line 8

我使用 PostgreSQL 版本 9.6.2-3 和 XAMPP 7.1.1.0

最佳答案

该(通知)消息基于对 PHP 7 的更改。

因此,使用构造函数的旧方法仍在使用,这就是该消息的含义。暂时没问题,等以后完全去掉这个支持。但是,我认为这不会/会造成任何连接问题?

我们期望的不是像这样有一个带有构造函数的类:

<?php
class foo {
function foo() {
echo 'I am the constructor';
}
}
?>

...现在应该看起来像这样:

<?php
class foo {
function __construct() {
echo 'I am the constructor';
}
}
?>

请参阅此 PHP 7 deprecation 的第一部分信息。

您可以自己应用该更改,只需注释掉旧方法,然后使用其他构造函数形式。

关于postgresql - PostgreSQL 和 XAMPP 之间的错误连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42964654/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com