Share code curl like cho AE.
Các bạn Download về rồi tìm hiểu nha. Do mình không còn chơi nữa nên share. Bạn nào muốn tìm hiểu thì inbox qua fb cho Mình Tại Đây
Nguon : YeuThuThuat
<?phpfunction get_song_mp3($url) {//vtadz.com$link = str_replace('mp3.zing.vn','m.mp3.zing.vn',$url);$content = file_get_contents($link);
$xml = explode('xml="', $content);$xml = explode('"', $xml[1]);
$data = file_get_contents($xml[0]);
preg_match('/"source":"(.*)=?"/U', $data, $link);$url = str_replace('\/', '/', $link[1]);
return $url;
}?>
<?phpfunction get_album_mp3($url) {//vtadz.com$temp = str_replace('mp3.zing.vn','m.mp3.zing.vn',$url);$content = file_get_contents($temp);
$xml = explode('xml="', $content);$xml = explode('"', $xml[1]);
$data = file_get_contents($xml[0]);$data = str_replace('\/', '/', $data);
preg_match_all('/"source":"(.*)=?"/U', $data, $link);
return $link[1];
}?>
<?phpfunction get_api_mp3($id) {$api = 'http://api.mp3.zing.vn/api/mobile/song/getsonginfo?keycode=fafd463e2131914934b73310aa34a23f&requestdata={"id":"'.$id.'"}';$content = file_get_contents($api);$json = json_decode($content, true);
$name = $json['title'];$artist = $json['artist'];
$hq = $json['link_download']['128'];$hd = $json['link_download']['320'];$l2 = $json['link_download']['lossless'];
$url = $hq;
return $url;
}?>