>php教程 >PHP源码 >简单的PHP搜歌代码

简单的PHP搜歌代码

PHP中文网
PHP中文网원래의
2016-05-25 17:10:001172검색

代码

<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(&#39;meta http-equiv="content-type"content="text/html; charset=gb2312"&#39;);
if( isset( $_REQUEST[&#39;submit&#39;]) && isset( $_REQUEST[&#39;key&#39;]))
$key = $_REQUEST[&#39;key&#39;];
else $key = &#39;周杰伦&#39;;
$url = &#39;http://music.sina.com.cn/yueku/search/getRecommendXml1dot0.php?q=&#39;.urlencode($key).&#39;&l=50&json=json&#39;;
$data = file_get_contents( $url);

$data = json_decode( $data);
if( !count($data)) echo &#39;Not found&#39;;
?>
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;?>

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.