21,891
社区成员
发帖
与我相关
我的任务
分享
header("Content-Transfer-Encoding: binary");
$file = 'D:/Code/webfolder/hz/uploads/resource/123.docx';
if( file_exists( $file ) ) {
$fileName = basename( $file );
header("Content-type: application/force-download");
header("Content-type: application/octet-stream");
header("Accept-Ranges: bytes");
header("Accept-Length: ".filesize( $file ));
header("Content-Disposition: attachment; filename=" . $fileName);
readfile( $file );
}测试一下
