📅  最后修改于: 2023-12-03 15:18:33.863000             🧑  作者: Mango
在PHP中,readfile函数用于读取文件并将其发送到输出缓冲区。readfile函数将整个文件发送到客户端,适用于小型文件,而不适用于大型文件。
readfile ( string $filename , bool $use_include_path = false , resource $context = ? ) : int|false
$filename
: 必需,指定要读取的文件的路径。$use_include_path
: 可选,如果设置为TRUE
,则在include_path
中查找文件。$context
: 可选,指定文件流的其他参数。false
。以下示例演示了如何使用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;
}
在这个示例中,我们首先检查文件是否存在。然后,我们设置HTTP响应头以便将文件发送到客户端。最后,我们使用readfile函数将文件内容读取并发送到输出缓冲区。