这是一个php
版获取网易云热评的接口
0) {
$arr= [
//歌曲id
'id' => $id,
//评论者
'user' => $json['hotComments'][0]['user']['nickname'],
//歌曲图片
'pic' => $json['hotComments'][0]['user']['avatarUrl'],
//评论内容
'content' => $json['hotComments'][0]['content'],
//歌曲url
'song_url' => song_url()
];
return $arr;
}
}
echo music_hot_comments();