本文实例讲述了PHP实现简单搜歌的方法。分享给大家供大家参考。具体实现方法如下:
<form name="" method="post" action=""> <input name="key" type="text" /> <input name="submit" type="submit" value="搜歌" /> </form> <pre> <?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'; ?> </pre> <?php foreach( $data as $one){ $music = $one->MP3URL; $music = file_get_contents( $music); $music = str_replace('iask_music_song_url="' , '', str_replace('";' , '', $music)); ?> <div><?php echo 'ALBUM_NAME : '.$one->NAME.' MUSIC_URL : <a href='.$music.'>'.$one->NAME.'</a>'.' SINGER_NAME'.$one->SINGERCNAME;?></div> <?php } ?>
希望本文所述对大家的php程序设计有所帮助。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索php
搜歌
php分页代码简单实现、php 单点登录简单实现、php简单实现mvc、php实现简单计算器、简单文件系统的实现,以便于您获取更多的相关知识。
时间: 2024-10-10 23:09:04