使用远程或外部链接查找上次创建的图像文件

时间:2015-03-03 09:38:05

标签: php

我们有一些这种格式的jpeg文件:

123-1.jpeg ,123-2.jpeg ,123-3.jpeg ,123-4.jpeg ....

这个文件位于我的VPS上,我需要通过远程查找并显示延迟文件(我的意思是外部网络链接)。 我有问题如何我可以读取这种名称格式的文件我试过这是行不通的:

$screnshot_url = "http://8.7.6.5/screenshots/123-*.jpeg ";


$filemtime = filemtime_remote($screnshot_url);
$files = $screnshot_url;
$files = array_combine($files, array_map($filemtime, $files));
arsort($files);
$img = key($files);


function filemtime_remote($uri)
{
$uri = parse_url($uri);
$handle = @fsockopen($uri['host'],80);
if(!$handle)
    return 0;

fputs($handle,"GET $uri[path] HTTP/1.1\r\nHost: $uri[host]\r\n\r\n");
$result = 0;
while(!feof($handle))
{
    $line = fgets($handle,1024);
    if(!trim($line))
        break;

    $col = strpos($line,':');
    if($col !== false)
    {
        $header = trim(substr($line,0,$col));
        $value = trim(substr($line,$col+1));
        if(strtolower($header) == 'last-modified')
        {
            $result = strtotime($value);
            break;
        }
    }
}
fclose($handle);
return $result;
}

0 个答案:

没有答案