PHP 网络函数

PHP pfsockopen() 函数打开持久的 Internet 或 Unix 域套接字连接。该函数与 fsockopen() 几乎相同,不同之处在于脚本完成后连接不会关闭。它是 fsockopen() 的持久版本。

语法

pfsockopen(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。

示例:pfsockopen() 示例

下面的示例显示 pfsockopen() 的用法功能。

<?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>