Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Download direto através do link "DOWNLOAD"
- * Example: directDownload("http://mp3skull.com/mp3/drake_hate_sleeping_alone.html");
- *
- * Criador: Por Bruno da Silva
- * Regex: http://www.the-art-of-web.com/php/parse-links/
- *
- *
- * Equipe de Programadores [iPs]TeaM
- *
- */
- function directDownload($url)
- {
- if(preg_match_all("/<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>/siU", @file_get_contents($url), $findLinks, PREG_SET_ORDER))
- {
- foreach($findLinks as $link) if(strpos($link[3], "Download") !== false)
- {
- header('Content-type: mp3');
- header('Content-Disposition: attachment; filename="musica.mp3"');
- readfile($link[2]);
- }
- }
- return true;
- }
Add Comment
Please, Sign In to add comment