PHP:另存为自定义内容对话框

时间:2012-11-17 15:03:51

标签: php file content-disposition save-as

我有以下代码:

header('Content-type: text/plain');
header("Content-Disposition: attachment; filename=bookmark.adr");
readfile('bookmark.adr');

这会生成一个另存为弹出窗口,用户可以在其中保存bookmark.adr文件。但我想自定义生成该文件的内容。如何生成内容并将该文件弹出为save-as?

谢谢!

1 个答案:

答案 0 :(得分:1)

不要做readfile()。回应你想要包含的任何文件。

您的Content-Disposition标题会告诉大多数浏览器提示用户保存文件。