获取远程文件的上次修改日期

时间:2009-05-10 12:12:10

标签: php jquery curl

我想通过curl获取远程文件的最后修改日期。有谁知道这是怎么做到的吗?

8 个答案:

答案 0 :(得分:39)

您可以使用curl_getinfo()执行此类操作:

<?php
$curl = curl_init('http://www.example.com/filename.txt');

//don't fetch the actual page, you only want headers
curl_setopt($curl, CURLOPT_NOBODY, true);

//stop it from outputting stuff to stdout
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

// attempt to retrieve the modification date
curl_setopt($curl, CURLOPT_FILETIME, true);

$result = curl_exec($curl);

if ($result === false) {
    die (curl_error($curl)); 
}

$timestamp = curl_getinfo($curl, CURLINFO_FILETIME);
if ($timestamp != -1) { //otherwise unknown
    echo date("Y-m-d H:i:s", $timestamp); //etc
} 

答案 1 :(得分:22)

在PHP中,您可以使用本机函数get_headers()

<?php
$h = get_headers($url, 1);

$dt = NULL;
if (!($h || strstr($h[0], '200') === FALSE)) {
    $dt = new \DateTime($h['Last-Modified']);//php 5.3
}

答案 2 :(得分:13)

来自php's article

<?php
// outputs e.g.  somefile.txt was last modified: December 29 2002 22:16:23.

$filename = 'somefile.txt';
if (file_exists($filename)) {
    echo "$filename was last modified: " . date ("F d Y H:i:s.", filemtime($filename));
}
?>

filemtime()是这里的关键。但我不确定你是否可以获得远程文件的最后修改日期,因为服务器应该将它发送给你...也许在HTTP标题中?

答案 3 :(得分:4)

有时标题会有不同的大写小写,这应该会有所帮助:

function remoteFileData($f) {
    $h = get_headers($f, 1);
    if (stristr($h[0], '200')) {
        foreach($h as $k=>$v) {
            if(strtolower(trim($k))=="last-modified") return $v;
        }
    }
}

答案 4 :(得分:3)

您可以使用curl_setopt($handle, CURLOPT_HEADER, true)激活接收回复标题。您还可以打开CURLOPT_NOBODY以仅接收标头,然后通过\ r \ n爆炸结果并解释单个标头。标题Last-Modified是您感兴趣的标题。

答案 5 :(得分:1)

通过编辑h4kuna的答案我创建了这个:

$fileURL='http://www.yahoo.com';
$headers = get_headers($fileURL, 1);
$date = "Error";
//echo "<pre>"; print_r($headers); echo "</pre>";
if ( $headers && (strpos($headers[0],'200') !== FALSE) ) {
    $time=strtotime($headers['Last-Modified']);
    $date=date("d-m-Y H:i:s", $time);
}
echo 'file: <a href="'.$fileURL.'" target="_blank">'.$fileURL.'</a> (Last-Modified: '.$date.')<br>';

答案 6 :(得分:0)

web developer forum

开始就会有这样的工作
<? $last_modified = filemtime("content.php"); print("Last Updated - ");
print(date("m/d/y", $last_modified)); ?

// OR

$last_modified = filemtime(__FILE__); 

该链接提供了一些有用的信息,您可以使用它们

答案 7 :(得分:0)

不得不解决类似问题,但对我来说每天下载一次就足够了,所以我只比较了本地(下载)缓存文件的修改日。远程文件没有Last-Modified标头。

$xml = 'test.xml';
if (is_file($xml) || date('d', filemtime($xml)) != date('d')) {
    $xml = file_get_contents(REMOTE_URL);
}