fsockopen 不工作?

发布于 2024-09-09 01:16:36 字数 619 浏览 6 评论 0原文

我正在尝试使用 Windows 7 在命令行上通过 PHP 连接到 IRC 服务器。

每次运行此命令时:

$socket = fsockopen($irc_server, 6667, $errno, $errstr, 5);

$errno = 0, $errstr = "" 和 < code>$socket = 'Resource id #4' (using die($socket);) 造成

这种情况的原因是什么,以及如何对此进行更多调试。

以下代码:

$s = fsockopen("google.com", 80, $errno, $errstr, 5);
die($errno.", ".$errstr.", ".$s);

...返回以下内容:

0, , Resource id #4

我无法使用 $socket。当我尝试使用它时,它显示“无效资源”。另外,PHP 文档指出 errno 0 表示套接字打开错误。

感谢帮助。

I am trying to connect to an IRC server via PHP on a command line using Windows 7.

Everytime when running this:

$socket = fsockopen($irc_server, 6667, $errno, $errstr, 5);

$errno = 0, $errstr = "" and $socket = 'Resource id #4' (using die($socket);)

What is the cause of this, and how can I debug more into this.

The following code:

$s = fsockopen("google.com", 80, $errno, $errstr, 5);
die($errno.", ".$errstr.", ".$s);

...returns the following:

0, , Resource id #4

I can't use $socket. It says "Invalid resource" when I try to use it. Also, the PHP documentation notes that errno 0 indicates a wrongly opened socket.

Help is appreciated.

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

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

发布评论

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

评论(3

仙女山的月亮 2024-09-16 01:16:36

您能给我们展示更多您的代码吗?

这段代码会发生什么:

$s = fsockopen($irc_server, 6667, $errno, $errstr, 5);
if ($s === false) {
  die($errno.", ".$errstr.", ".$s);
} else {
  // your code with socket
  die("Valid socket resource");
}

Could you show us a little more of your code?

What happens with this code:

$s = fsockopen($irc_server, 6667, $errno, $errstr, 5);
if ($s === false) {
  die($errno.", ".$errstr.", ".$s);
} else {
  // your code with socket
  die("Valid socket resource");
}

?

べ映画 2024-09-16 01:16:36

我修好了。

函数 irCmd 不知道 $socket,所以我把它放在它前面:

global $socket;

它起作用了。非常感谢!

I fixed it.

function irCmd didn't know $socket, so I put this in front of it:

global $socket;

And it worked. Thanks a bunch!

紫瑟鸿黎 2024-09-16 01:16:36

文件说(强调我的):

如果errno中返回的值为0并且函数返回FALSE,则表明在之前发生了错误>connect() 调用。这很可能是由于初始化套接字时出现问题。

由于该函数没有返回 false,因此套接字有效。如果您还有其他问题,请告诉我们是什么问题;这里fsockopen已经正常返回了。

The documentation says (emphasis mine):

If the value returned in errno is 0 and the function returned FALSE, it is an indication that the error occurred before the connect() call. This is most likely due to a problem initializing the socket.

Since the function did not return false, the socket is valid. If you are having further problems, tells us what they are; fsockopen has returned normally here.

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