Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, "Url Aqui");
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- $saida = curl_exec($ch);
- preg_match("/downloadlink.*?=.([^\x22]+)/", $saida, $link);
- $link[1];
- echo $link[1];
- curl_close($ch);
Add Comment
Please, Sign In to add comment