当前位置:  开发笔记 > 编程语言 > 正文

用于检查上次修改链接的PHP脚本

如何解决《用于检查上次修改链接的PHP脚本》经验,为你挑选了1个好方法。

是否有一个基本的php方法接受一个URL并从头部检索上次修改的日期?

这似乎是php可以做的事情,但我不确定要检查哪个对象.

谢谢



1> Greg..:

让这个去..用卷曲.

$c = curl_init('http://...');
curl_setopt($c, CURLOPT_HEADER, 1); // Include the header
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); // Return the result instead of printing it
$result = curl_exec($c);

if (curl_errno($c))
    die(curl_error($c));

// $result now contains the response, including the headers

if (preg_match('/Last-Modified:(.*?)/i', $result, $matches))
    var_dump($matches[1]);

推荐阅读
yzh148448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有