Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は自分のプロジェクトの1つにphpを使用しています。特定のサイトのXMLのセットを持つURlがあります。URLはwww.sitefeed.com/somekey&&gZipCompress=yesの形式です。サーバーにダウンロードせずに、このファイルの内容を読みたい。
URLの前にcompress.zlib:を試しましたが、空の配列が返されました。
ありがとう
php変数「allow_url_fopen」をオンにしている場合は、次を使用できます。
$lrc = gzopen($the_link, "r"); $text =""; while(!gzeof($lrc)){ $text .= gzread($lrc, 1024); } gzclose($lrc);
そうでない場合は、file_get_contentsを使用するか、curlを使用することもできます。