下面是我正在使用的 php 代码,
<?php
if(isset($_POST['tarea'])){
$filename = $_SESSION['Zone'].'.zone';
$data = $_POST['tarea'];
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=$filename");
header("Content-Type: application/octet-stream; ");
header("Content-Transfer-Encoding: binary");
echo $data;
}
?>
我只是想将文本区域的内容下载为可下载文件,但它也在文件中输出 html 代码,我尝试使用 die($data); 而不是 echo $data; 但它不起作用。请帮我解决这个问题。谢谢。