首页 > 开发 > PHP > 正文

PHP实现简单搜歌的方法

2024-05-04 23:38:12
字体:
来源:转载
供稿:网友

这篇文章主要介绍了PHP实现简单搜歌的方法,实例分析了php通过新浪乐库搜索接口查询歌曲的功能,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP实现简单搜歌的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <form name="" method="post" action=""
  2. <input name="key" type="text" /> <input name="submit" type="submit" value="搜歌" /> 
  3. </form> 
  4. <pre> 
  5. <?php  
  6. header('meta http-equiv="content-type"content="text/html; charset=gb2312"'); 
  7. if( isset( $_REQUEST['submit']) && isset( $_REQUEST['key'])) 
  8. $key = $_REQUEST['key']; 
  9. else $key = '周杰伦'
  10. $url = 'http://music.sina.com.cn/yueku/search/getRecommendXml1dot0.php?q='.urlencode($key).'&l=50&json=json'
  11. $data = file_get_contents( $url); 
  12. $data = json_decode( $data); 
  13. if( !count($data)) echo 'Not found'
  14. ?> 
  15. </pre> 
  16. <?php foreach( $data as $one){ 
  17. $music = $one->MP3URL; 
  18. $music = file_get_contents( $music); 
  19. $music = str_replace('iask_music_song_url="' , '', str_replace('";' , '', $music)); 
  20. ?> 
  21. <div><?php echo 'ALBUM_NAME : '.$one->NAME.' MUSIC_URL : <a href='.$music.'>'.$one->NAME.'</a>'.' SINGER_NAME'.$one->SINGERCNAME;?></div> 
  22. <?php } 
  23. ?> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表