君山 发表于 2020-9-29 11:01:56

Discuz fsocketopen 函数 模拟POST远程访问

//直白说我没有用成功过

      function fsocketopen($hostname, $port = 80, &$errno, &$errstr, $timeout = 15) {
      $fp = '';
      if(function_exists('fsockopen')) {
                $fp = @fsockopen($hostname, $port, $errno, $errstr, $timeout);
      } elseif(function_exists('pfsockopen')) {
                $fp = @pfsockopen($hostname, $port, $errno, $errstr, $timeout);
      } elseif(function_exists('stream_socket_client')) {
                $fp = @stream_socket_client($hostname.':'.$port, $errno, $errstr, $timeout);
      }
      return $fp;}

页: [1]
查看完整版本: Discuz fsocketopen 函数 模拟POST远程访问