0

私はこの問題に対する答えを見つけるために多くのことを検索し、試みてきました.StackOverflowでここで尋ねられた非常によく似た質問に対する多くの答えを試してみました.まだわかりませんが、ここで答えが見つかることを願っています。

私の問題は、何らかの理由で、PHP の GoogleCode ページ ( http://crypto-js.googlecode.com/svn/tags/3.1. 2/build/rollups/sha512.js )。私は基本的なものから始め、file_get_contentsそれが失敗したときに Web で他のオプションを検索した結果、次の基本的なクラスが作成されました。

<?php
include 'snoopy.class.php';

class StreamReader {

    public static $agent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)";
    static $proxy = "http://proxy.whoisaaronbrown.com/proxy/";

    public static function curlcontents($path) {
        if(!function_exists('curl_version')) { return false; }
        $handle = curl_init();
        if(!$handle) { return false; }
        $timeout = 30;

        curl_setopt($handle, CURLOPT_URL, $path);
        curl_setopt($handle, CURLOPT_CONNECTTIMEOUT, $timeout);
        curl_setopt($handle, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($handle, CURLOPT_VERBOSE, true);
        curl_setopt($handle, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($handle, CURLOPT_USERAGENT, StreamReader::$agent);

        $lines_string = curl_exec($handle);
        curl_close($handle);
        return $lines_string;
    }

    public static function sockcontents($path, $port = 80) {
        $handle = fsockopen($path, $port, $errno, $errstr, 30);
        if (!$handle) {
            echo " /* <b>$errstr ($errno)</b> */ "; return false;
        } else {
            $lines_string = "";
            $out = "GET / HTTP/1.1\r\n";
            $out .= "Host: $path\r\n";
            $out .= "Connection: Close\r\n\r\n";
            fwrite($handle, $out);
            $data = false;
            while (!feof($handle)) {
                $data = fgets($handle, 128);
                if($data === false) { break; }
                $lines_string .= $data;
            }
            fclose($handle);
            if($lines_string == "" && $data === false) { return false; }
            return $lines_string;
        }
    }

    public static function readcontents($path) {
        if(!ini_get('allow_url_fopen')) { return false; }

        // fopen opens webpage in Binary
        // $handle = fopen($path,"rb");
        $handle = fopen($path,"r");
        if(!$handle) { return false; }

        $lines_string = "";
        $data = fread($handle,1024);
        do {
            if($data === false || strlen($data) == 0) {
                break;
            }
            $lines_string .= $data;
            $data = fread($handle,1024);
        } while(true);

        fclose($handle);
        if($lines_string == "" && $data === false) { return false; }
        return $lines_string;
    }

    public static function browsecontents($path) {
        $snoopy = new Snoopy();
        if($snoopy->fetch($path)) { return $snoopy->results; }
        else { echo " /* <b>error fetching document: " . $snoopy->error . "</b> */ "; return false; }
    }
}
?>

ご覧のとおり、「website - How to read a web page in PHP」「php - file_get_contents() failed to open stream」および「php - Why file_get_contents() returns "failed to open stream: HTTP request " への回答をコピーしました。失敗した!"?" 「fsockopen - PHP はポートを使用して外部 IP に接続します」およびその他のオプションのソリューションは、StackOverflow にあるほか、Web で見つけた SuperUser、PHP Freaks などから入手できます。

(ちなみに、私はまだ十分なクレジットなどを持っていないので、2 つ以上のリンクを投稿することは許可されていません。この投稿の醜さを解消してくれたユーザーbmlaに感謝します)

私のコードは、私が制御できない外部ホスト上にありますがfunction_exists('curl_version')、true を返しますini_get('allow_url_fopen')http_get、未定義の関数エラーが発生します。

私はすべての機能を単独で試してみましたが、相互に組み合わせたり、私が見つけた、または考えられる他の手法と組み合わせたりしました。その中には、Aaron Brown のプロキシを介したリダイレクトがあります$trythispathforachange = $proxy . $path;( 悲しいことに、私が試したすべての機能と組み合わせは、「接続に失敗しました」または「接続がタイムアウトしました」というエラーになり、Snoopy の場合、接続が不安定になったことがtcp://わかります。また、https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.jsの場合、すべてが問題なく動作するため、これまでのところコードは正しいに違いないと思います。

しかし、どうやら googlecode.com には、ヒューマン インターフェイス ベースのブラウザーとは対照的に、私への応答を妨げるものがまだあるようです。

提供されたヘルプや情報を事前に感謝します!

クラース

4

0 に答える 0