(PHP 4, PHP 5, PHP 7, PHP 8)
pfsockopen — 打开持久的 Internet 或 Unix 套接字连接
$hostname
,$port
= -1,&$error_code
= null
,&$error_message
= null
,$timeout
= null
这个函数的作用与 fsockopen() 完全一样,不同的地方在于当在脚本执行完后,连接一直不会关闭。可以说它是 fsockopen() 的长连接版本。
对于其参数的信息,请参考 fsockopen() 的文档。
pfsockopen() 返回文件指针,可以跟其他文件函数(比如
fgets()、fgetss()、fwrite()、fclose()
和 feof())一起使用, 或者在失败时返回 false
。
版本 | 说明 |
---|---|
8.0.0 |
timeout 现在可以为 null。
|