方法一:
复制發代码如下:
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header( 'Content-Disposition:attachment; filename='.basename($filepath));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0′);
header('Pragma: public');
header('Content-Length: ' . filesize($filepath));
readfile($file_path );
方法二:
复制代代码如下:
$fileinfo = pathinfo($filename);
header('Content-type: application/x-'.$fileinfo[ 'extension']);
header('Content-Disposition:attachment; filename='.$fileinfo['basename']);
header('Content-Length: '.filesize($filename));
readfile($ファイル);
終了();
http://www.bkjia.com/PHPjc/328007.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/328007.html技術記事方法一: 复制代码 代码如下: header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition:attachment;fil...