本篇文章主要介紹php透過新浪樂庫搜尋介面查詢歌曲的功能,有興趣的朋友參考下,希望對大家有幫助。
具體如下:
<form name="" method="post" action=""> <input name="key" type="text" /> <input name="submit" type="submit" value="搜歌" /> </form> <pre class="brush:php;toolbar:false"> <?php header('meta http-equiv="content-type"content="text/html; charset=gb2312"'); if( isset( $_REQUEST['submit']) && isset( $_REQUEST['key'])) $key = $_REQUEST['key']; else $key = '周杰伦'; $url = 'http://music.sina.com.cn/yueku/search/getRecommendXml1dot0.php?q='.urlencode($key).'&l=50&json=json'; $data = file_get_contents( $url); $data = json_decode( $data); if( !count($data)) echo 'Not found'; ?>MP3URL; $music = file_get_contents( $music); $music = str_replace('iask_music_song_url="' , '', str_replace('";' , '', $music)); ?>
NAME.' MUSIC_URL : '.$one->NAME.''.' SINGER_NAME'.$one->SINGERCNAME;?>
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。
相關推薦:
以上是php透過新浪樂庫搜尋介面查詢歌曲的功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!