详解PHP fsockopen的使用方法_PHP教程
程序员文章站
2022-06-09 23:36:42
...
还有一个以curl_开头的函数,可以实现很多功能。有时间要好好研究!下面是关于fscokopen的介绍
1.PHP fsockopen函数说明:
Open Internet or Unix domain socket connection(打开套接字链接)
Initiates a socket connection to the resource specified by target .
fsockopen() returns a file pointer which may be used together with the other file functions (such as fgets() , fgetss() , fwrite() , fclose() , and feof() ).就是返回一个文件句柄
开启PHP fsockopen这个函数
PHP fsockopen需要 PHP.ini 中 allow_url_fopen 选项开启。
- $fp = fsockopen("www.example.com",
80, $errno, $errstr, 30);- if (!$fp) {
- echo "$errstr ($errno)br />n";
- } else {
- $out = "GET / HTTP/1.1rn";
- $out .= "Host: www.example.comrn";
- $out .= "Connection: Closernrn";
- fwrite($fp, $out);
- while (!feof($fp)) {
- echo fgets($fp, 128);
- }
- fclose($fp);
- }
以上就是PHP fsockopen函数的具体使用方法,供大家参考学习。