PHP5.2.9のfile_get_contentsを介してgzipで圧縮されたバージョンのページを受信しようとしています。
次のコードでfopenを使用してそれを行うことができました:
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Accept-Encoding: gzip\r\n"
)
);
$context = stream_context_create($opts);
ob_start();
$fp = fopen('http://example.com', 'r', false, $context);
fpassthru($fp);
fclose($fp);
$content = ob_get_contents();
ob_end_clean();
それは機能しますが、代わりにfile_get_contentsを使用してそれを実行できる方法があることを望んでいました。
ありがとう。