21,893
社区成员




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 );
}
测试一下