非常常见的问题,但仍然没有找到正确的解决方案。我需要每天早上运行 cron 作业来启动 php 脚本,以列出夜间在 Web 服务器上创建的所有新文件。这对于查看访问者在夜间上传的内容非常有用,而且这些文件通常可能是有害文件,会伤害其他访问者的计算机。到目前为止,我有这个:
$dir = "../root/";
$pattern = '\.*$'; // check only file with these ext.
$newstamp = 0;
$newname = "";
if ($handle = opendir($dir)) {
while (false !== ($fname = readdir($handle))) {
// Eliminate current directory, parent directory
if (ereg('^\.{1,2}$',$fname)) continue;
// Eliminate other pages not in pattern
if (! ereg($pattern,$fname)) continue;
$timedat = filemtime("$dir/$fname");
if ($timedat > $newstamp) {
$newstamp = $timedat;
$newname = $fname;
}
}
}
closedir ($handle);
// $newstamp is the time for the latest file
// $newname is the name of the latest file
// print last mod.file - format date as you like
print $newname . " - " . date( "Y/m/d", $newstamp);
这会打印最新的文件,但仅在一个目录 root/ 中,并且不检查例如 root/folder/ 等。如何重新执行?如果我在根/文件夹中添加一个新文件,脚本将向我显示带有 date 的文件夹,但不会显示根/文件夹中的哪个文件是创建的。我希望你明白我的意思,谢谢