我想知道,如何在所有链接中使用“filemtime”?
示例: - 我的获取的 PHP 文件是: http: //mywebsite.org/getdate.php - 我想要获取日期的链接是:http ://thegoodwebsite.net/i/banp.gif
在此先感谢您的帮助!
我想知道,如何在所有链接中使用“filemtime”?
示例: - 我的获取的 PHP 文件是: http: //mywebsite.org/getdate.php - 我想要获取日期的链接是:http ://thegoodwebsite.net/i/banp.gif
在此先感谢您的帮助!
内置http
包装器不支持stat
功能系列,例如filemtime
. 所以:你不能。
HTTP 协议定义了一个Last-Modified
您可以使用的标头字段。使用卷曲:
$curl = curl_init('http://thegoodwebsite.net/i/banp.gif');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_FILETIME, true);
if (false !== curl_exec($curl)) {
$time = curl_getinfo($curl, CURLINFO_FILETIME);
echo 'remote time of the retrieved document: ', $time;
}
curl_close($curl);
如果你得到-1,它可能是未知的。