文件下载

来源:互联网 发布:会话php 编辑:程序博客网 时间:2024/05/21 17:26
<?php
$file="D:/AppServ/www/a.txt";
if(is_file($file)) {
            header("Content-Type: application/force-download");
            header("Content-Disposition: attachment; filename=".basename($file));
            readfile($file);
            exit;
        }else{
            echo "文件不存在!";
            exit;
        }
?>
0 0