写一个文件并发送给用户

时间:2013-09-21 17:23:56

标签: php download

尝试将html写入文件并打开文件对话框

供用户保存

但没有任何事情发生且没有错误

任何想法?

谢谢

这是我的代码

<?php
    $css=$_POST['css'];
    $html=$_POST['html'];

      $handle = fopen("file.txt", "w");
        fwrite($handle, $html);
        fclose($handle);

        header('Content-Description: File Transfer');
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename='.basename($handle));
        header('Content-Transfer-Encoding: binary');
        header('Expires: 0');
        header('Cache-Control: must-revalidate');
        header('Pragma: public');
        header('Content-Length: ' . filesize($handle));
        ob_clean();
        flush();
        readfile($handle);
        exit;

    ?>

2 个答案:

答案 0 :(得分:0)

您无法在此处传递文件对象,这应该是有效的文件名

    header('Content-Disposition: attachment; filename=file.txt'));

答案 1 :(得分:0)

首先,您在代码中混合了两件事:文件句柄和文件名。 fopenfwritefclose与前者合作; basenamefilesizereadfile - 与后者。由于您似乎将文件名作为固定字符串,因此可以这样写:

$filename = "./file.txt";
$handle = fopen($filename, "w");
fwrite($handle, $html);
fclose($handle);

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment;filename=' . basename($filename));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($filename));
ob_clean();
flush();
readfile($filename);

其次,我承认我没有得到什么代码。您似乎需要将一些输入作为下载返回给用户,您不必创建文件,然后写入,然后在以下后立即将其读回:...

header('Content-Length: ' . strlen($html));
echo $html;

...已经足够了:你不需要回读文件,它足以回显其内容(和fwrite('w')一样,它与$html内容完全相同)。< / p>