我正在尝试以与上次修改时相反的顺序显示图像。不幸的是,get_headers()似乎只适用于url,stat ['mtime']和filemtime()都失败了。我还有其他方法可以获取文件的最后修改信息吗?这是我目前的代码:
if (isset($_GET['start']) && "true" === $_GET['start'])
{
$images = array();
if ($dir = dir('images'))
{
$count = 0;
while(false !== ($file = $dir->read()))
{
if (!is_dir($file) && $file !== '.' && $file !== '..' && (substr($file, -3) === 'jpg' || substr($file, -3) === 'png' || substr($file, -3) === 'gif'))
{
$lastModified = filemtime($file);
$images[$lastModified] = $file;
++$count;
}
}
echo json_encode($images);
}
else { echo "Could not open directory"; }
}
答案 0 :(得分:1)
在调用filemtime($file)
之前,您应该在文件名前加上路径。尝试
$lastMod = filemtime("images/".$file);