2017-02-26 69 views
-2

this ist my JSON File。我'去解析「影片名稱」和「相冊」,在PHP這樣:使用鏈接解析PHP中的JSON

當前歌曲:Titel的(專輯)

我怎樣才能讓這個用PHP?任何人都可以發佈完整的PHP文件嗎?

+1

可以請你添加任何代碼? – MRustamzade

+6

Stackoverflow不是代碼編寫服務。 – paullb

+3

可能的重複[如何從JSON使用PHP提取數據?](http://stackoverflow.com/questions/29308898/how-do-i-extract-data-from-json-with-php) –

回答

1

很好,這應該是相當簡單:

<?php 

function get_content($URL){ 
     $ch = curl_init(); 
     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
     curl_setopt($ch, CURLOPT_URL, $URL); 
     $data = curl_exec($ch); 
     curl_close($ch); 
     return $data; 
} 

//$json = file_get_contents("http://api.laut.fm/station/radiojfm/current_song"); 

$json = get_content("http://api.laut.fm/station/radiojfm/current_song"); 
$data = json_decode($json, true); 

echo $data["title"]." ".$data["album"]; 

?> 
+0

對不起,但這並沒有顯示任何內容:http://vu2005.panel.xmh-user.de/json.php – Finn

+0

這段代碼似乎是合法的,我只是測試它,它像一個魅力。 –

+0

@Finn - 是否啓用了allow_url_fopen? - http://stackoverflow.com/a/3488430/5351549 – ewcz