fsockopen は成功するが、fwrite が失敗する理由は何ですか?
ローカルおよび WINDOWS サーバー上でテストされており、非常に安定しています。
しかし、LINUX サーバーでは、fsockopen は毎回成功しますが、fwrite はほとんどの場合失敗し、一度成功するまでに長い時間がかかります。 。
そのような状況に遭遇した人はいますか? 。
さらに//コメントマークの部分、誰か説明してもらえませんか。 。
コードは次のとおりです。
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> $matches = parse_url($url); !isset($matches['host']) && $matches['host'] = ''; !isset($matches['path']) && $matches['path'] = ''; !isset($matches['query']) && $matches['query'] = ''; !isset($matches['port']) && $matches['port'] = ''; $host = $matches['host']; $path = $matches['path'] ? $matches['path'].($matches['query'] ? '?'.$matches['query'] : '') : '/'; $port = !empty($matches['port']) ? $matches['port'] : 80; if($post) { $out = "POST $path HTTP/1.0\r\n"; $out .= "Accept: */*\r\n"; $out .= "Accept-Language: zh-cn\r\n"; $out .= "Content-Type: application/x-www-form-urlencoded\r\n"; $out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n"; $out .= "Host: $host\r\n"; $out .= 'Content-Length: '.strlen($post)."\r\n"; $out .= "Connection: Close\r\n"; $out .= "Cache-Control: no-cache\r\n"; $out .= "Cookie: $cookie\r\n\r\n"; $out .= $post; } else { $out = "GET $path HTTP/1.0\r\n"; $out .= "Accept: */*\r\n"; $out .= "Accept-Language: zh-cn\r\n"; $out .= "User-Agent: $_SERVER[HTTP_USER_AGENT]\r\n"; $out .= "Host: $host\r\n"; $out .= "Connection: Close\r\n"; $out .= "Cookie: $cookie\r\n\r\n"; } $fp = @fsockopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout); if(!$fp) { return '';//note $errstr : $errno \r\n } else { stream_set_blocking($fp, $block); stream_set_timeout($fp, $timeout);var_dump($fp); @fwrite($fp, $out); //注释标记 /*$status = stream_get_meta_data($fp); if(!$status['timed_out']) { while (!feof($fp)) { if(($header = @fgets($fp)) && ($header == "\r\n" || $header == "\n")) { break; } } $stop = false; while(!feof($fp) && !$stop) { $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit)); $return .= $data; if($limit) { $limit -= strlen($data); $stop = $limit <= 0; } } }*/ //注释标记 @fclose($fp); return true; }
/* 元の投稿者のアプリケーションについては、TCP ソケットに関する情報をいくつか示します */ $status = stream_get_meta_data($fp); /* ここでは、TCP 接続がタイムアウトしたかどうかを確認します */ if(!$status['timed_out']) { /* タイムアウトがない場合は、ファイルの終わりに達するまでデータを読み取ります */ while (!feof($fp)) { /* ここでHTTPヘッダ情報を読み込むため、空行でヘッダ情報の終わりとなるため、ブレークが必要です */ if(($header = @fgets($fp)) && ($header == "rn" || $header == "n")) { 壊す; } } /* ここで読み込むHTTPボディは、少なくともHTTPレスポンスヘッダにContent-Lengthがあるかどうかを確認して、それを元に処理するのが少し荒いのではないかと思います。それは次のようになります */ $stop = false; while(!feof($fp) && !$stop) { /* 最大 8192 バイトを読み取ります ($limit は減少します) */ $data = fread($fp, ($limit == 0 || $limit > 8192 ? 8192 : $limit)); /* 読み取った内容を戻り文字列に連結します */ $return .= $data; if($limit) { $limit -= strlen($data); $stop = $limit <font color="#e78608">------解決策---------------------- <div class="clear"></div></font>