전체 코드:
public function downloadFile(){ $M = M($this->tableName); $map['id'] = I('fileId'); $info = $M->where($map)->find(); $filepath = '.'.$info['path']; if( !file_exists($filepath) ){ echo '文件不存在!'; exit; } //$M->where($map)->setInc('download'); $file = fopen($filepath,"r"); // 打开文件 // 输入文件标签 Header("Content-type: application/octet-stream"); Header("Accept-Ranges: bytes"); Header("Accept-Length: ".filesize($filepath)); Header("Content-Disposition: attachment; filename=" . $info['savename']); // 输出文件内容 echo fread($file,filesize($filepath)); fclose($file); exit; }
위 코드는 thinkphp의 메소드입니다.
$this->tableName은 file
fileId를 기준으로 데이터베이스 응답 파일 가져오기
file_exists를 통해 파일 존재 여부를 판단하고, 없으면 오류 메시지 출력
fopen을 통해 파일 열기
Header 메소드에서 파일을 열고 fread() 메소드를 통해 파일을 출력합니다.