readfile 怎么使用
时间: 2024-02-17 13:12:43 浏览: 56
node.js中的fs.readFile方法使用说明
5星 · 资源好评率100%
`readfile`函数用于读取文件并将其内容发送到输出缓冲区,通常用于下载文件。使用`readfile`函数非常简单,只需要传入文件路径作为参数,它将自动读取文件并发送到输出缓冲区,示例代码如下:
```
$file = 'example.txt';
if(file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename($file).'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
readfile($file);
exit;
}
```
在上面的示例代码中,我们首先检查文件是否存在,然后设置一些响应头信息,例如文件类型、文件名等,最后调用`readfile`函数读取并输出文件内容。注意,`readfile`函数会自动将文件内容输出到输出缓冲区,并不需要手动输出。
阅读全文