Почему php's file_get_contents неправильно получает файлы json из xkcd? - PullRequest
0 голосов
/ 21 января 2011

При написании PHP-скрипта для загрузки комиксов xkcd у меня возникали ошибки при попытке получить конкретные комиксы (в отличие от последнего). В частности, указав file_get_contents на следующий URL:

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

необъяснимым образом извлек xhtml версию страницы комикса на xkcd.com, а не файл JSON. Однако, если я запрашиваю ту же самую ссылку в моем браузере, загружается правильный файл JSON. Я не уверен, почему это происходит, но я подозреваю, что это как-то связано с отправкой заголовков запроса.

Пожалуйста, помогите! : S

Ответы [ 2 ]

2 голосов
/ 21 января 2011

Хотя лично он отлично работает с file_get_contents для меня, вы можете попробовать использовать cURL следующим образом (если он у вас есть), поскольку это будет более надежное решение:

<?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);
?>
0 голосов
/ 21 января 2011

Работает нормально для меня. Может быть, $COMIC_NUM настроен неправильно?

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"}
...