Home  >  Article  >  Backend Development  >  How to implement simple song search in PHP_php skills

How to implement simple song search in PHP_php skills

WBOY
WBOYOriginal
2016-05-16 20:09:551233browse

The example in this article describes how to implement a simple song search in PHP. Share it with everyone for your reference. The specific implementation method is as follows:

<form name="" method="post" action="">
<input name="key" type="text" /> <input name="submit" type="submit" value="搜歌" />
</form>
<pre class="brush:php;toolbar:false">
<&#63;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&#63;q='.urlencode($key).'&l=50&json=json';
$data = file_get_contents( $url);
$data = json_decode( $data);
if( !count($data)) echo 'Not found';
&#63;>
<?php foreach( $data as $one){ $music = $one->MP3URL; $music = file_get_contents( $music); $music = str_replace('iask_music_song_url="' , '', str_replace('";' , '', $music)); ?>
<?php echo 'ALBUM_NAME : '.$one->NAME.' MUSIC_URL : '.$one->NAME.''.' SINGER_NAME'.$one->SINGERCNAME;?>
<?php } ?>

I hope this article will be helpful to everyone’s PHP programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn