メニュー

2008年4月30日(水)

IE7でダウンロードできない!と言われたphpプログラマ

それは単なるInternetExplorer7のバグのせい。
でもphpプログラマとして、どうにか対応してやんなきゃならない。(泣)

で、結論。次のようにすればいい。

$date_dir = “./download”;
$outputfile = “orenoseishun.mp3”;
$mimetype = “audio/mpeg”;
header(”Pragma: private”);
header(”Cache-control: private, must-revalidate”);
header(”Content-Type: $mimetype”);
header(”Content-Length: “.filesize(”$data_dir/$outputfile”));
header(”Content-Disposition: attachment; filename=\”{$outputfile}\”");
header(”Expires: Mon, 3 Jun 2005 10:00:00 GMT”);
readfile(”$data_dir/$outputfile”);

ちゃんちゃん(^^)v

管理者用

カレンダー

最近の記事: 10本