PHP做文件下载

$filename =$filename.".txt";    //要下载的文件名
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".basename($filename));
readfile($filename);//也可以是echo 一个变量

你可能感兴趣的:(文件下载)