PHP導出一個txt文本文件

1.首先處理好寫入txt文件的內容,特別注意編碼問題,能夠用mb_convert_encoding函數處理編碼問題;

2.引入頭文件;

3.輸出內容,能夠直接下載到本地。

$content = "文本內容"//文件內容
header("Content-type: application/octet-stream"); 
header("Accept-Ranges: bytes"); 
header("Content-Disposition: attachment; filename = test.txt"); //文件命名
header("Expires: 0"); 
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
header("Pragma: public"); 
echo $content;
複製代碼

歡迎大佬們指點!!!

相關文章
相關標籤/搜索