关于 xml:php fsockopen 不工作

php fsockopen is NOT working

我正在尝试使用特定查询信息 ping 域。

这应该非常简单,但它不起作用。

所以...为什么这么简单的 fsockopen php 命令不起作用?!

1
fsockopen('http://www.domain.com/test?q=https://example.com', 80);

警告:fsockopen() [function.fsockopen]: 无法连接到 http://www.domain.com/test?q=https://example.com:80 (无法找到套接字传输" http" - 您在配置 PHP 时是否忘记启用它?) 在 ...


fsockopen 只接受主机名。

  • 请使用 cURL 库
  • 或简单的 file_get_contents 函数