我如何在PHP中即时创建文件并下载它

时间:2012-04-07 23:06:21

标签: php download

我有以下php脚本,它检查复选框元素的提交值,并打印它们的值(如果已选中)。

<?php
echo '<table class="features-table">';

echo "<tbody>";
for ($i=1;$i<=2284;$i+=1) {
  if($_POST[$i]) {
    echo"<tr>";
            echo "<td><a href=http://www.m-w.com/dictionary/" . $_POST[$i] . ">" . $_POST[$i].  "</a></td>";
    echo "</tr>";
  }
}

?>

我想向用户显示此数据,可以下载为文本文件。我该如何创建下载按钮。在这种情况下,我是否需要单独的PHP脚本?如何将表单数据提交给此php脚本?

从谷歌搜索我得到了我需要使用类似于下面的代码

header("Content-type: text/plain");
header("Content-Disposition: attachment; filename=list.txt");
header("Pragma: no-cache");
header("Expires: 0");
echo 'data1,data2,data3...';

但我不知道如何将其与当前的PHP脚本集成。

由于

2 个答案:

答案 0 :(得分:1)

我认为没有必要动态创建文件。

我会按照以下方式进行....

将数据作为隐藏字段提供,并将字段与下载按钮一起包含在表单标记中。当用户单击下载按钮时,脚本中将显示所有表单数据。然后,您可以对数据执行任何操作。

答案 1 :(得分:1)

发布可能在将来帮助他人的代码

在sudip的回答之后,我做了以下更改

<?php
$list = "Unknown words from GSL\n\n";
    echo '<table class="features-table">';
    echo "<tbody>";
    for ($i=1;$i<=2284;$i+=1) {
      if($_POST[$i]) {
        echo"<tr>";
                echo "<td><a href=http://www.m-w.com/dictionary/" . $_POST[$i] . ">" . $_POST[$i].  "</a></td>";
                $list = $list . $_POST[$i] . "\n";
        echo "</tr>";
      }
    }

echo'
   <form action="download.php" method="post">
   <input type="hidden" name="wordlist" value="'. $list . '">

   <center><input type="submit" name="submit_parse" style="margin-bottom: 20px; margin-top: 10px;width:200px; font-face: "Comic Sans MS"; font-size: larger; " value=" Download as a text file "> </center>
   </form>
';
?>

我必须创建单独的php文件,因为必须在发送任何实际输出之前调用header(),无论是普通HTML标记,文件中的空行还是PHP。

download.php的内容

<?php
header("Content-type: text/plain");
header("Content-Disposition: attachment; filename=list.txt");
header("Pragma: no-cache");
header("Expires: 0");
echo $_POST["wordlist"] ;
?>