AVIファイルをダウンロードするためのPHPスクリプトを作成しようとしています。ファイルは私のサーバー上にあり、私はそれをユーザーに送信したい。私は次のスクリプトを作ったが、それを実行すると、0 KBの大きなAVIファイルしか得られない。PHPヘッダ添付AVIファイル
誰でも私が間違っていることを教えてもらえますか?
$file_path = "downloads/test.avi";
// Get filename
$filename = explode("/", $file_path);
$filename = $filename[count($filename)-1];
if(file_exists($file_path)) {
$file_extension = strtolower(substr(strrchr($file_path, "."), 1));
// This will set the Content-Type to the appropriate setting for the file
switch($file_extension) {
case "pdf":
$ctype = "application/pdf";
break;
case "exe":
$ctype = "application/octet-stream";
break;
case "zip":
$ctype = "application/zip";
break;
case "doc":
$ctype = "application/msword";
break;
case "xls":
$ctype = "application/vnd.ms-excel";
break;
case "ppt":
$ctype = "application/vnd.ms-powerpoint";
break;
case "gif":
$ctype = "image/gif";
break;
case "png":
$ctype = "image/png";
break;
case "jpeg":
$ctype = "image/jpg";
break;
case "jpg":
$ctype = "image/jpg";
break;
case "mp3":
$ctype = "audio/mpeg";
break;
case "wav":
$ctype = "audio/x-wav";
break;
case "mpeg":
$ctype = "video/mpeg";
break;
case "mpg":
$ctype = "video/mpeg";
break;
case "mpe":
$ctype = "video/mpeg";
break;
case "mov":
$ctype = "video/quicktime";
break;
case "avi":
$ctype = "video/x-msvideo";
break;
case "src":
$ctype = "plain/text";
break;
default:
$ctype = "application/force-download";
}
$filesize = filesize($file_path);
// Set content type
header("Content-type: " . $ctype);
// Download file
header("Content-Disposition: attachment; filename=\"" . $filename . "\"");
// Set size of file
header("Content-Length: " . $filesize);
readfile($file_path);
これは私が(何らかの理由でContent-Length
がゼロである)FirefoxでLiveHTTPHeadersから取得されるものです:
HTTP/1.1 200 OK
Date: Sun, 17 Jul 2011 14:34:24 GMT
Server: Apache/2.2.6 mod_auth_kerb/5.3 PHP/5.2.17 mod_fcgid/2.3.5
X-Powered-By: PHP/5.2.17
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Disposition: attachment; filename="test.avi"
Content-Length: 0
Connection: close
Content-Type: video/x-msvideo
あなたはこの行を追加しますhttp://snuzzer.dk/nas/client.php
ちょうど注:キーをファイル拡張子として使用し、mime-typeとして値を使用する配列を使用してください。あなたのコードを減らし、おそらく編集するのが簡単です – hakre
readfile()は読み込んだバイト数を返します。ファイルが本当に読み込まれていることを確認できますか?権限の問題になる可能性があります。 – sanmai