PHP 动态创建文件并立即下载

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 动态创建文件并立即下载相关的知识,希望对你有一定的参考价值。

$file = "exported_data.txt" ;
// open a file to export data   ...
$open = fopen($file,"w+") ;
// write selected exported data to a file ..........
fwrite($open,$exported_data);
fclose($open);
// download ...
header("Content-Type: application/octet-stream");
header("Content-disposition: attachment; filename=exported_data.txt");
print($export_affiliate_data);
exit();

以上是关于PHP 动态创建文件并立即下载的主要内容,如果未能解决你的问题,请参考以下文章

在 PHP 中创建动态 PayPal 立即购买按钮

创建一个包含动态生成的文件的 ZIP 文件

ZipStream 在 PHP 中动态创建的 zip 文件不会在 OSX 中打开

生成动态文件并在 GWT 中下载

用于 PHP 中的动态立即付款按钮的 Paypal API

php 获取一组数据并创建一个将自动下载的csv文件