Home > Article > Backend Development > PHP download txt file function
$filename = $file; //文件路径 $mime = 'application/force-download'; header('Pragma: public'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Cache-Control: private',false); header('Content-Type: '.$mime); header('Content-Disposition: attachment; filename="'.basename($filename).'"'); header('Content-Transfer-Encoding: binary'); header('Connection: close'); readfile($filename); exit();
The above introduces the PHP download txt file function, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.