Guest User

Untitled

a guest
Jan 13th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. $ch = curl_init();
  2. curl_setopt($ch, CURLOPT_URL, "Url Aqui");
  3. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  4. $saida = curl_exec($ch);
  5. preg_match("/downloadlink.*?=.([^\x22]+)/", $saida, $link);
  6. $link[1];
  7. echo $link[1];
  8. curl_close($ch);
Add Comment
Please, Sign In to add comment