gpt4 book ai didi

php - 如何弹出下载提示?

转载 作者:可可西里 更新时间:2023-11-01 00:01:23 25 4
gpt4 key购买 nike

我正在用它把内容放到一个文件中

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

在此之后我需要为用户弹出一个窗口来保存/下载文件我该怎么做

最佳答案

这会给用户一个下载提示:

<?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');
?>

关于php - 如何弹出下载提示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4138724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com