如何通过单击使用PHP下载.txt文件

时间:2015-04-03 12:25:36

标签: php codeigniter

我的xampp服务器上有一个.TXT文件,如果用户点击它应该下载的链接,而是在我的浏览器窗口中打开它。

我的代码如下:

<a href="<?php echo base_url();?>assets/task/start/<?php echo $files->task_verify_file;?>"><?php echo $files->task_verify_file;?></a>

任何人解决问题谢谢

1 个答案:

答案 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);
}
相关问题