Bir URL kabul eder ve son başlığından değiştirilme tarihini alır temel php yöntem var mı?
Şey php yapabileceği gibi görünüyor, ama kontrol itiraz emin değilim.
Teşekkürler
Bu kullanarak .. go cURL verin.
$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]);
Teşekkürler ... Ben senin sürümü biraz değiştirerek denedim ve bu benim için iş gibi görünüyor:
$c = curl_init('http://...');
curl_setopt($c, CURLOPT_HEADER, 1); // Include the header
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_FILETIME, 1);
curl_exec($c);
$result = curl_getinfo($c);
if (curl_errno($c))
die(curl_error($c));
echo date('G:i M jS \'y',(int)$result['filetime']);