我在使用 php 时遇到了奇怪的问题。我有检查文章文件夹的脚本(以及检查文件夹中图像的非常相似的脚本),并基于该脚本创建文章菜单(或画廊)
在我的本地主机上,这工作正常,并找到所有文件并按预期处理它们。但是在真实服务器上,两个脚本在几个文件后都意外中断。
图片检查脚本是这个
function GalleryList() {
echo '
<div class="GalleryGrid">
<ul>';
error_reporting(E_ALL);
$thumbs = array_diff(scandir('images/Thumbs'),array ('..','.','Thumbs.db'));
foreach ($thumbs as $key => $current) {
$imagelist[filectime('images/Thumbs/'.$current)] = $current;
}
krsort($imagelist);
foreach ($imagelist as $key => $thumb) {
$fullImage = substr($thumb,6);
echo '<li><a href="images/'.$fullImage.'"><img src="images/Thumbs/'.$thumb.'"> </a> </li>'.PHP_EOL;
}
echo '</ul>';
}
文章检查几乎是同一个脚本,只是不同的文件夹和不同的输出HTML。权限没有区别。不用说我没有错误。