欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

详解PHP fsockopen的使用方法

程序员文章站 2022-05-13 09:24:59
...

还有一个以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 选项开启。

  1. $fp = fsockopen("www.example.com",
    80, $errno, $errstr, 30);
  2. if (!$fp) {
  3. echo "$errstr ($errno)br />n";
  4. } else {
  5. $out = "GET / HTTP/1.1rn";
  6. $out .= "Host: www.example.comrn";
  7. $out .= "Connection: Closernrn";
  8. fwrite($fp, $out);
  9. while (!feof($fp)) {
  10. echo fgets($fp, 128);
  11. }
  12. fclose($fp);
  13. }

以上就是PHP fsockopen函数的具体使用方法,供大家参考学习。