我有以下代码:
header('Content-type: text/plain');
header("Content-Disposition: attachment; filename=bookmark.adr");
readfile('bookmark.adr');
这会生成一个另存为弹出窗口,用户可以在其中保存bookmark.adr文件。但我想自定义生成该文件的内容。如何生成内容并将该文件弹出为save-as?
谢谢!
答案 0 :(得分:1)
不要做readfile()
。回应你想要包含的任何文件。
您的Content-Disposition
标题会告诉大多数浏览器提示用户保存文件。