以下に関数を書きました:
function download_xfs($url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_COOKIE, 'login=michael; xfss=08ruiweu4tuhb5xqs8');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$string = curl_exec ($ch);
curl_close ($ch);
// Set headers
}
使用するdownload_xfs("http://address.com/file.html");
と、実際のファイルではなくファイルのバイナリが返されます。誰でもこのコードを書き直して、ダウンロード用のファイルを処理できますか?