2016-07-25 53 views
0

我按照API URL獲得的「沙利文縣,賓夕法尼亞」 JSON格式從維基百科的內容https://en.wikipedia.org/w/api.php?action=query&titles=Sullivan_County,_Pennsylvania&prop=revisions&rvprop=content&format=json提取從維基百科的JSON文件

現在我想顯示以及HTML格式或類似的內容,如內容維基百科https://en.wikipedia.org/wiki/Sullivan_County,_Pennsylvania

我初學JSON,如何才能提取以及HTML格式的內容?

+0

JSON只是一種格式;你使用什麼編程語言? – MSalters

+0

我使用PHP語言 –

回答

0

首先,您需要使用file_get_contents獲取數據,然後使用json_decode響應轉換爲PHP變量。然後你可以回顯你需要的字段。一個非常簡單的例子就是這樣的:

<?php 
$response = file_get_contents('https://en.wikipedia.org/w/api.php?action=query&titles=Sullivan_County,_Pennsylvania&prop=revisions&rvprop=content&format=json'); 
$data = json_decode($response, true); 
?> 

<h1><?php echo $data['query']['pages']['91928']['title']; ?></h1>