使用Link在PHP中解析JSON

时间:2017-02-26 14:17:51

标签: php json parsing radio

this是我的JSON文件。我打算解析" Titel"和#34;专辑"在PHP中:

当前歌曲:标题(专辑)

我如何用PHP制作这个?任何人都可以发给我完整的PHP文件吗?

1 个答案:

答案 0 :(得分: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"];

?>