GustavoAraujo

(PHP) MusicStreamByName

Aug 24th, 2014
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.  
  3.     $pesquisa = str_replace(' ', '+', $_GET['q']);
  4.     $musica = file_get_contents('http://search.4shared.com/q/CCQD/1/music/' .$pesquisa);
  5.  
  6.     $pos = strpos($musica, "showMediaPreview(event, '") + 25;
  7.     $resto = strpos($musica, "/preview.mp3") + 12;
  8.     $link = substr($musica, $pos, $resto-$pos);
  9.     echo $link;
  10. ?>
Add Comment
Please, Sign In to add comment