Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an URL to a XML file, is there any posibility to get its creation date ?

share|improve this question
Unfortuneantly no, you can't. – Adnan Sep 12 '12 at 9:34
3  
This is a piece of metadata not available via HTTP through any standard mechanism. There's also a good chance, since it's XML, that it's dynamically generated on each request, and therefore the traditional concept of the "creation date" would not apply to it anyway. – DaveRandom Sep 12 '12 at 9:36

2 Answers

up vote 0 down vote accepted

NO.
because its a web url you possibly cannot get more information that what the web server exposes

share|improve this answer

Yes can get a file information using CURL curl_getinfo without having to return the entire body

Example

$curl = curl_init('URL_TO_XML');
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
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) { 
    echo date("Y-m-d H:i:s", $timestamp);
} 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.