2010-11-09 71 views
3

我用這把內容保存到一個文件如何彈出下載提示?

file_put_contents('abc.txt', $text); 

我需要有一個彈出的用戶在此之後保存/下載文件 我該怎麼做

回答

10

這會給用戶下載提示:

<?php                 
header('Content-type: text/plain');        

// What file will be named after downloading         
header('Content-Disposition: attachment; filename="abc.txt"'); 

// File to download         
readfile('abc.txt');            
?> 
0

使用內容處置標題:

header('Content-Disposition: attachment; filename="abc.txt"'); 
readfile('abc.txt'); 

別忘了給適當的Content-Type頭爲好。

0

你要通過正確的頭:

header("Content-disposition: Atachment");