5

我希望能够使用 json 从维基百科中提取标题和描述。所以...维基百科不是我的问题,我是 json 新手,想知道如何使用它。现在我知道有数百个教程,但我已经工作了几个小时,它只是没有显示任何内容,这是我的代码:

<?php
  $url="http://en.wikipedia.org/w/api.php?action=query&prop=extracts|info&exintro&titles=google&format=json&explaintext&redirects&inprop=url";

    $json = file_get_contents($url);
    $data = json_decode($json, TRUE);

    $pageid = $data->query->pageids;
    echo $data->query->pages->$pageid->title;
?>

只是为了更容易点击:

我知道我可能只是做错了一件小事,但这真的让我很烦,而且代码......我习惯使用 xml,而且我几乎刚刚进行了切换,所以你能解释一下吗对我和未来的访客来说,因为我很困惑......任何你需要的我没有说的,只要评论它,我相信我能得到它,提前谢谢!

4

3 回答 3

7

$pageid正在返回一个包含一个元素的数组。如果你只想拿到第一个,你应该这样做:

$pageid = $data->query->pageids[0];

您可能会收到以下警告:

 Array to string conversion 

完整代码:

    $url = 'http://en.wikipedia.org/w/api.php?action=query&prop=extracts|info&exintro&titles=google&format=json&explaintext&redirects&inprop=url&indexpageids';

    $json = file_get_contents($url);
    $data = json_decode($json);

    $pageid = $data->query->pageids[0];
    echo $data->query->pages->$pageid->title;
于 2013-06-18T10:47:13.900 回答
5

我会这样做。它支持在同一个调用中有多个页面。

$url = "http://en.wikipedia.org/w/api.php?action=query&prop=extracts|info&exintro&titles=google&format=json&explaintext&redirects&inprop=url";

$json = file_get_contents($url);
$data = json_decode($json, TRUE);

$titles = array();
foreach ($data['query']['pages'] as $page) {
    $titles[] = $page['title'];
}
var_dump($titles);
/* var_dump returns
array(1) {
  [0]=>
  string(6) "Google"
}
*/
于 2013-06-18T10:48:18.730 回答
0

试试这个,它会帮助你 % 这个代码是在 Wikipedia 的 Wikipedia api 的帮助下提取标题和描述

    <?php

       $url = 'http://en.wikipedia.org/w/api.php?action=query&prop=extracts|info&exintro&titles=google&format=json&explaintext&redirects&inprop=url&indexpageids';

       $json = file_get_contents($url);
       $data = json_decode($json);

       $pageid = $data->query->pageids[0];
       $title = $data->query->pages->$pageid->title;
       echo "<b>Title:</b> ".$title."<br>";

       $string=$data->query->pages->$pageid->extract;

       // to short the length of the string 

       $description = mb_strimwidth($string, 0, 322, '...');

       // if you don't want to trim the text use this

           /* 
            echo "<b>Description:</b> ".$string;
           */

        echo "<b>Description:</b> ".$description;
     ?>
于 2020-02-11T10:39:23.560 回答