2

几天来,我一直在尝试显示我的天气摄像头的缩略图。服务器路径如下

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">';
?>

非常感谢任何帮助!

4

1 回答 1

0

它通过添加

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

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

于 2012-10-14T10:17:24.817 回答