在 PHP 中,您可以使用 header()
函数来设置 HTTP 头。在使用 readfile()
函数之前,您可以使用 header()
函数设置所需的 HTTP 头信息。以下是一个示例:
<?php
// 设置 Content-Type 为 text/plain
header('Content-Type: text/plain');
// 设置 Content-Disposition 为 attachment,以便将文件作为附件下载
header('Content-Disposition: attachment; filename="example.txt"');
// 使用 readfile() 函数读取并输出文件内容
readfile('path/to/your/file.txt');
?>
在这个示例中,我们首先设置了 Content-Type
为 text/plain
,然后设置了 Content-Disposition
为 attachment
,并指定了下载文件的名称(例如 “example.txt”)。最后,我们使用 readfile()
函数读取并输出文件内容。这将导致浏览器将文件作为附件下载,而不是直接显示在浏览器中。