我的xampp服务器上有一个.TXT文件,如果用户点击它应该下载的链接,而是在我的浏览器窗口中打开它。
我的代码如下:
<a href="<?php echo base_url();?>assets/task/start/<?php echo $files->task_verify_file;?>"><?php echo $files->task_verify_file;?></a>
任何人解决问题谢谢
答案 0 :(得分:0)
我是这样做的:
if (file_exists ($file)) {
header("Content-Type: text/plain; charset=utf-8");
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".$filename);
readfile($file);
}