PHP。解析代码时动态调整图像大小

时间:2015-05-28 18:03:24

标签: php html on-the-fly

我被告知使用此代码动态调整图像大小将有助于加快速度,但是在解析时会出现此错误。

<?php
$dirname = "pictures/photos/BITA2015/";
$images = scandir($dirname);
$ignore = Array(".", "..");

foreach($images as $curimg)
{
 if (!in_array($curimg, $ignore))
 {
  echo "<a href=".$dirname.$curimg."><img src="resize.php?file=./pictures/photos/BITA2015/$curimg"/></a>";
 }
}   
?>

解析错误:语法错误,意外'调整大小'(T_STRING),期待','或';'在D:\ Websites \ South Holland \ photos.php第27行

我不确定resize.php中还有什么内容,但在解析时肯定不会出错?

请帮助,我需要这个通过我的大学作业

0 个答案:

没有答案