使用Wikipedia API在PHP中获取文章时间戳

时间:2016-11-06 20:25:27

标签: php json wikimedia

我需要比How do I extract data from JSON with PHP?更简单的解释而且,我还需要将日期从最终PHP中的时间戳中吐出来。

我可以通过维基百科JSON API以这种方式获取PHP中的“测试文章”元数据:

<?php 
$json_string = file_get_contents("https://en.wikipedia.org/w/api.php?action=query&titles=Test_article&prop=revisions&rvlimit=1&format=json"); 
print $json_string;
?>

这给了我这个:

{"continue":{"rvcontinue":"20161025140129|746140638","continue":"||"},"query":
{"normalized":[{"from":"Test_article","to":"Test article"}],"pages":{"29005947":
{"pageid":29005947,"ns":0,"title":"Test article","revisions":
[{"revid":746140679,"parentid":746140638,"user":"Theblackmidi72",
"timestamp":"2016-10-25T14:01:47Z","comment":"Undid revision 746140638 by
[[Special:Contributions/Theblackmidi72|Theblackmidi72]] ([[User 
talk:Theblackmidi72|talk]])"}]}}}}

但是如何从时间戳中获取和回显/打印日期,即"timestamp":"2016-10-25T14:01:47Z"中的“2016-10-25”,以及整个JSON字符串中的那个字符串?

我假设我需要首先获取完整字符串016-10-25T14:01:47Z,然后从中删除T14:01:47Z

编辑11/25/16 杰夫的回答非常有效,我将该功能转换为短代码,以便将其插入到帖子/页面内容中。

function wikipedia_article_date() {

$url = "https://en.wikipedia.org/w/api.php?action=query&titles=Test_article&prop=revisions&rvlimit=1&format=json";

$data = json_decode(file_get_contents($url), true);
$date = $data['query']['pages']['746140638']['revisions'][0]['timestamp'];

$date = new DateTime($date);
return $date->format('m-d-Y'); 
}

add_shortcode('article_date','wikipedia_article_date');

但现在我收到了PHP警告:

file_get_contents(https://en.wikipedia.org/w/api.php?action=query&
amp;titles=Test_article&amp;prop=revisions&amp;rvlimit=1&amp;format=json):
failed to open stream: no suitable wrapper could be found in 
/functions/shortcodes.php

这是我的短代码还是原始功能的问题?

1 个答案:

答案 0 :(得分:4)

  1. json_decode将JSON转换为本机PHP数组,以便于操作。

  2. print_r将递归打印数组,以便您可以轻松地手动阅读它以发现文档的结构。

  3. DateTime::format对于转换日期/时间格式非常有用。

  4. <?php
    
    $url = "https://en.wikipedia.org/w/api.php?action=query&titles=Test_article&prop=revisions&rvlimit=1&format=json";
    
    $data = json_decode(file_get_contents($url), true);
    
    // this will show you the structure of the data
    //print_r($data);
    
    // just the value in which you're interested
    $date = $data['query']['pages']['29005947']['revisions'][0]['timestamp'];
    
    // cast to the format you want
    $date = new DateTime($date);
    echo $date->format('Y-m-d');
    
      

    2016年10月25日