0

我每半小时使用 PHP 读取一次提要 xml,到目前为止,无论是否更新,我总是在读取整个提要文件。但我想检查自上次下载以来提要 xml 是否更新,如果更新则只读取 xml,否则不读取。

我正在尝试使用下面的代码来实现它,但 $lastmodifiedRSS 始终为空。我不确定我的代码出了什么问题。如果我得到 $lastmodifiedRSS 那么我可以很容易地将它与上次加载时间进行比较,然后决定做什么。

如果任何专家可以分享一些信息,那就太好了。先感谢您。

//get feed information & content
$feed = new feed($rssurl);
$feed->load();

//get the last modified date (web server information)
$lastmodifiedRSS = $feed->http->get_header_value('Last-Modified');

        function http($url)
{
    $this->url($url);
    $this->user_agent = 'posh';
    $this->header = "";
    $this->code = "";
    $this->codeStr = "";
    $this->max_d = 5;
    $this->authorization = "";
    $this->proxy_auth = "";
    $this->url = $url;
    $this->addProxy();
}

    function feed($url)
{
    if ($url) {
        $this->url = $url;
        $this->http = new http($url);
        //$this->addProxy();
    } else {
        $this->http = new http('');      
    }
}
function load()
    {
        $content= $this->http->get();
        if (!$content)
            return false;
        $content = $this->transcode($content);
        return $content;
    }

function get_header_value($name)
    {
        if (preg_match("/$name: ?([^\\r\\n]*)\\r\\n/m",$this->head,$matches) !== false)
        {
            if (count($matches) > 1)
            {
                return $matches[1];
            }
        }
        return false;
    }

问候,莫娜

4

2 回答 2

1

stat()在 PHP 中使用

<?php
print_r(stat('users.json'));

输出:

Array ( [0] => 2 [1] => 0 [2] => 33206 [3] => 1 [4] => 0 [5] => 0 [6] => 2 [7] => 298 [8] => 1384073940 [9] => 1384073940 [10] => 1368626190 [11] => -1 [12] => -1 [dev] => 2 [ino] => 0 [mode] => 33206 [nlink] => 1 [uid] => 0 [gid] => 0 [rdev] => 2 [size] => 298 [atime] => 1384073940 [mtime] => 1384073940 [ctime] => 1368626190 [blksize] => -1 [blocks] => -1 )

Source

跟踪变量 [atime] , [size] 可以帮助您实现您想要做的事情。

于 2013-11-10T09:04:22.757 回答
0

使用 HTTP 标头本身可以更好地处理这种检查。

如果服务器Etag在响应中发送标头,您可以将其与If-None-Match下一个请求的标头一起使用,以了解文件是否已更改。

同样,如果服务器Last-Modified在响应中发送标头,您可以将此时间戳与If-Modified-Since下一个请求的标头一起使用,以了解文件是否已更改。

只是为了让你知道你能做什么,我不能提供任何代码,因为我不知道你在这里使用的是哪个 HTTP 库。

于 2013-11-14T06:06:36.423 回答