PHP fsockopen() 函数打开 Internet 或 Unix 域套接字连接。
默认情况下,套接字以阻塞模式打开。可以使用 stream_set_blocking() 切换到非阻塞模式。
与函数 stream_socket_client() 类似,但提供了更丰富的选项集,包括非阻塞连接和提供流上下文的能力.
语法
fsockopen(hostname, port, error_code, error_message, timeout)
参数
hostname | 必需。 指定主机名(例如"www.yxjc123.com")。如果安装了 OpenSSL 支持,主机名可以添加 ssl:// 或 tls:// 前缀以使用 SSL 或 TLS 客户端通过 TCP/IP 连接到远程主机。 |
port | 可选。 指定端口号。对于不使用端口的传输,例如 unix://。 |
error_code | 可选。 指定系统级错误号。 |
error_message | 可选。 将错误消息指定为字符串。 |
timeout | 可选。 指定连接超时(以秒为单位)。当为 null 时,使用 php.ini 设置的 default_socket_timeout。 |
返回值
返回一个文件指针,可以与其他文件函数一起使用,例如fgets(), fgetss(), fwrite()、fclose() 和 feof(),失败时返回 false。
异常
如果 主机名 无效,则抛出 E_WARNING
示例:fsockopen() 示例
下面的示例显示了fsockopen() 函数的用法。
<?php
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 20);
if (!$fp) {
echo "$errstr ($errno)<br>\n";
} else {
$out = "GET / HTTP/1.1\r\n";
$out .= "Host: www.example.com\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
?>
上述代码的输出将类似于:
HTTP/1.1 200 OK
Age: 491454
Cache-Control: max-age=604800
Content-Type: text/html; charset=UTF-8
Date: Sun, 31 Oct 2021 08:32:38 GMT
Etag: "3147526947+ident"
Expires: Sun, 07 Nov 2021 08:32:38 GMT
Last-Modified: Thu, 17 Oct 2019 07:18:26 GMT
Server: ECS (dna/63AA)
Vary: Accept-Encoding
X-Cache: HIT
Content-Length: 1256
Connection: close
<!doctype html>
<html>
<head>
<title>Example Domain</title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style type="text/css">
body {
background-color: #f0f0f2;
margin: 0;
padding: 0;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
"Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
div {
width: 600px;
margin: 5em auto;
padding: 2em;
background-color: #fdfdff;
border-radius: 0.5em;
box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);
}
a:link, a:visited {
color: #38488f;
text-decoration: none;
}
@media (max-width: 700px) {
div {
margin: 0 auto;
width: auto;
}
}
</style>
</head>
<body>
<div>
<h1>Example Domain</h1>
<p>This domain is for use in illustrative examples in documents. You may use this
domain in literature without prior coordination or asking for permission.</p>
<p><a href="https://www.iana.org/domains/example">More information...</a></p>
</div>
</body>
</html>
示例:使用 UDP 连接
在下面的示例中,fsockopen()函数用于UDP连接。
<?php
$fp = fsockopen("udp://127.0.0.1", 13, $errno, $errstr);
if (!$fp) {
echo "ERROR: $errno - $errstr<br>\n";
} else {
fwrite($fp, "\n");
echo fread($fp, 26);
fclose($fp);
}
?>