复制代码代码如下:
$file = 'monkey.gif';
if (file_exists($file)) {
header('Content-Description: ファイル転送');
header('Content-Type: application/octet-stream');
header('Content-Disposition:attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('有効期限: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flash();
readfile($file);
終了します。
}
?>
?
header("Content-Type: application/force-download");
header("Content-Disposition: 添付ファイル; filename=ins.jpg");
readfile("imgs/test_Zoom.jpg");
?>
http://www.bkjia.com/PHPjc/824916.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/824916.html技術記事复制代码代码如下: ?php $file = 'monkey.gif'; if (file_exists($file)) { header('Content-Description: ファイル転送'); header('Content-Type: application/octet-stream');頭...