开发者

Why does php's file_get_contents incorrectly retrieve json files from xkcd?

In writing a PHP script to download xkcd comics, i incurred errors when trying to get specific comics (as opposed to the latest one). Specifically, pointing file_get_contents at the following url:

xkcd.com/$COMIC_NUM/info.0.json

inexplicably retrieved the xhtml version of the comic's page on xkcd.com, and not a JSON file. However, if i request the exact same url in my browser, the correct JSON file is downloaded. I'm not sure why thi开发者_高级运维s is happening, but i suspect it has something to do with the request headers being sent.

Please help! :S


Whilst I it personally works perfectly with file_get_contents for me, you could try using cURL as follows (if you have it available) as this would be a more robust solution:

<?php
    $COMIC_NUM = 849;

    $curlSession = curl_init();
    curl_setopt($curlSession, CURLOPT_URL, '"http://xkcd.com/'.$COMIC_NUM.'/info.0.json');
    curl_setopt($curlSession, CURLOPT_BINARYTRANSFER, true);
    curl_setopt($curlSession, CURLOPT_RETURNTRANSFER, true);
    $jsonData = curl_exec($curlSession);
    curl_close($curlSession);

    echo($jsonData);
?>


Works fine for me. Maybe $COMIC_NUM isn't set properly?

php > echo file_get_contents('http://xkcd.com/847/info.0.json');
{"img": "http://imgs.xkcd.com/comics/stingray_nebula.png", "title": "Stingray Nebula", "month": "1", "num": 847, "link": "", "year": "2011", "news": "", "safe_title": "Stingray Nebula", "transcript": "[[Two white figures are silhouetted against a dark sky.  They're sitting on top of a grassy hill.]]\nPerson: I know things are tough right now.  When I was going through some difficult times as a kid, I would go up on the roof and look through my telescope.\n\nPerson: One day I found a tiny star in Ara that seemed friendly.\nPerson: There were millions like it, but I decided that this one was mine.\n\nPerson: When things got bad, I'd go find that star, and think of my favorite Tolkien quote.  It's from Sam's time in Mordor.\n\n((The next panel is diagonally downward to the right of the previous.  The upper left corner overlaps.))\n[[A star is above the highest peak in a chain of mountains.]]\n\"There, peeping among the cloud-wrack above a dark tor high up in the mountains, Sam saw a white star twinkle for a while.  The beauty of it smote his heart, as he looked up out of the forsaken land, and hope returned to him.  For like a shaft, clear and cold, the thought pierced him that in the end the shadow was only a small and passing thing: There was light and high beauty forever beyond its reach.\"\n- The Return of the King\n\nCompanion: That's comforting!\nPerson: It was rather undercut in 1987, when the light from my star's explosion reached Earth.  The debris forms the Stingray Nebula.\n\nCompanion: There's probably a lesson there.\nPerson: \"Never trust an unstable asymptotic giant branch star.  Stick with main sequences and dwarfs.\"\nCompanion: I'll, uh, keep that in mind.\n\n{{Title text: E\u00c3\u00a4rendil will patrol the walls of night only until the sun reaches red giant stage, engulfing the Morning Star on his brow. Light and high beauty are passing things as well.}}", "alt": "E\u00c3\u00a4rendil will patrol the walls of night only until the sun reaches red giant stage, engulfing the Morning Star on his brow. Light and high beauty are passing things as well.", "day": "14"}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜