用PHP下载文件

时间:2017-04-25 18:25:50

标签: php

我有一个使用ABC_current_time.txt

格式生成的日志文件

要使用当前时间戳下载生成的日志文件,我使用了以下PHP代码。

<?php
$timestamp=date("H:i:s");
$filename="/tmp/log_file_".$timestamp.".txt";
header("Content-Length: " . filesize($filename));
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=log_file.txt');
header("Cache-Control: no-cache");
header("Pragma: no-cache");
readfile($filename);
?>

但是当我使用上面的代码时,它正在搜索具有精确当前时间的文件。但是日志文件已经生成5分钟了。

请帮我修改代码以生成相应的日志文件。

感谢。

0 个答案:

没有答案