以缩略图显示最新的网络摄像头图像

时间:2012-10-14 09:30:49

标签: php webcam

我多年来一直试图显示我的天气预报的缩略图。服务器路径如下

的public_html ..cam ... 20121012 ... 20121013 ... 20121014

我的网络摄像头设置每天自动创建日期文件夹。所以每天它会创建一个新文件夹并将其命名为date('Ymd')。

我正在使用以下脚本将图像显示在我的wordpress侧边栏上,但我无法使其工作。此外,我希望将其显示为缩略图,当访问者点击它时,在弹出屏幕中将其打开稍大(实际大小)。

<?php
chdir('/home/deb57301n2/domains/meteowestkust.be/public_html/cam/');
$subdirname = date('Ymd').'/';
echo getcwd();
$newest_mtime = 0;
$show_file = 'webcam_offline.png';
if ($handle = opendir($subdirname)) {
 while (false !== ($file = readdir($handle))) {
    if (($file != '.') && ($file != '..')) {
       $mtime = filemtime($subdirname.$file);
       if ($mtime > $newest_mtime) {
          $newest_mtime = $mtime;
          $show_file = $subdirname.$file;
       }
    }
  }
}
print '<img src="' .$show_file. '" alt="Weather Cam - West Coast - Belgium">';
?>

任何帮助都非常感谢!

1 个答案:

答案 0 :(得分:0)

通过添加

起作用

$ show_file =' / cam / '。$ subdirname。$ file;

无论如何,谢谢你的帮助!