我刚开始使用 Mediawiki。我正在尝试从页面中的 wiki 文章中解析 json 数据。
$jsonurl = "http://en.wikipedia.org/w/api.php?action=query&prop=revisions&rvlimit=1&rvprop=content&format=json&titles=Snowy_Owl";
$json = file_get_contents($jsonurl,0,null,null);
var_dump(json_decode($json));
我明白了
消息:file_get_contents(http://en.wikipedia.org/w/api.php?action=query&prop=revisions&rvlimit=1&rvprop=content&format=json&titles=Snowy_Owl)[function.file-get-contents]:无法打开流:HTTP请求失败!HTTP/1.0 403 禁止
我不知道为什么我会得到这个。