这个 pdo bug 现在修复了吗?

发布于 2024-08-26 09:38:56 字数 257 浏览 5 评论 0原文

请注意,您可以指定端口 号码带有“port=####”,但是这个端口 如果主机是,数字将被忽略 本地主机。如果您想连接到 默认端口以外的本地端口, 使用 host=127.0.0.1 而不是 本地主机。

引用自此页面,有人验证它是否已修复吗?

Note that you can specify a port
number with "port=####", but this port
number will be ignored if the host is
localhost. If you want to connect to
a local port other than the default,
use host=127.0.0.1 instead of
localhost.

Quoted from this page,has anyone verified if it has been fixed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

电影里的梦 2024-09-02 09:38:56

这不是一个错误。 MySQL 就是这样设计的。当主机为“localhost”时,MySQL Unix 客户端使用 Unix 套接字,又称为 Unix 域套接字,而不是用于连接的 TCP/IP 套接字,因此 TCP 端口并不重要。

参考:“4.2.2.连接MySQL服务器

That isn't a bug. That is how MySQL is designed. When the host is "localhost", MySQL Unix clients use a Unix socket, AKA Unix Domain Socket, rather than a TCP/IP socket for the connection, thus the TCP port doesn't matter.

Reference: "4.2.2. Connecting to the MySQL Server"

黎歌 2024-09-02 09:38:56

这很可能不是 PDO 中的错误,而是某些数据库客户端库的功能。例如,如果您使用 psql(PostgreSQL 客户端)连接到 localhost,它将使用 UNIX 套接字,但如果您使用 127.0.0.1 >,它将使用 TCP 套接字,为此它显然还需要端口号。

That's most likely not a bug in PDO, but a feature of some database client library. For example, if you use psql (the PostgreSQL client) to connect to localhost, it will use UNIX sockets, but if you use 127.0.0.1, it will use TCP sockets and for that it obviously needs also the port number.

时光瘦了 2024-09-02 09:38:56

以我的拙见,您应该检查 PDO/PHP 错误相关页面。

但我不认为这是一个错误。如果您在本地主机上,则不必指定端口。

In my humble opinion you should be checking the PDO/PHP bug related pages.

But i don't think it's a bug. If you are on localhost you don't have to specify a port.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文