//ダウンロード、応答ヘッダー情報を追加しますheader('Content-type:application/octet-stream');header('Content-Disposition:attachment;filename="'.basename($file).'"') ;header('Content-Length:'.filesize($file));readfile($file);