写一个文本文件并强制下载php

时间:2012-08-10 14:09:21

标签: php

我使用按钮指向创建文本文件的脚本:

<?php
$handle = fopen("file.txt", "w");
fwrite($handle, "text1.....");
fclose($handle);
?>
之后,我希望网络浏览器建议下载或打开此文件 我应该怎么做?感谢

2 个答案:

答案 0 :(得分:36)

使用readfile()application/octet-stream标题

<?php
    $handle = fopen("file.txt", "w");
    fwrite($handle, "text1.....");
    fclose($handle);

    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename('file.txt'));
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize('file.txt'));
    readfile('file.txt');
    exit;
?>

答案 1 :(得分:3)

$content = file_get_contents ($filename);
header ('Content-Type: application/octet-stream');
echo $content;

应该工作