Guest User

Untitled

a guest
Feb 20th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?
  2. function redirect($url){
  3. $ch = curl_init();
  4. curl_setopt($ch, CURLOPT_URL, $url);
  5. curl_setopt($ch, CURLOPT_HEADER, true);
  6. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
  7. curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
  8. $a = curl_exec($ch);
  9. if(preg_match('#Location: (.*)#', $a, $r))
  10. $l = trim($r[1]);
  11. return $l;
  12. }
Add Comment
Please, Sign In to add comment