0

可能重复:
如何从 PHP 目录中获取 X 个最新文件?
使用 PHP 递归获取最新文件

我有一个脚本接收上传到 www.bovicam/webcam 的最新网络摄像头图像:

<?php
$dir = 'webcam/';
$base_url = 'http://www.bovicam.com/webcam/';
$newest_mtime = 0;
$show_file = 'BROKEN';
if ($handle = opendir($dir)) {
    while (false !== ($file = readdir($handle))) {
        if (($file != '.') && ($file != '..')) {
            $mtime = filemtime("$dir/$file");
            if ($mtime > $newest_mtime) {
                $newest_mtime = $mtime;
                $show_file = "$base_url/$file";
            }
        }
    }
}

print '<img src="' .$show_file. '" alt="Current Bovicam webcam image - views across        Bovisand Bay" style="width:90%; margin-top:7%; margin-bottom:3%;" class="displayed" id="webcam_image">';
?>

我想在网络摄像头下方的页面中显示最后六张图像。我没有能够按日期“标记”相机中的文件的奢侈,那么有没有办法通过上面的“最后修改”来做到这一点?

4

0 回答 0