Advertisement
Guest User

Untitled

a guest
May 30th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function mobileDevice()
  2. {
  3. $type = $_SERVER[‘HTTP_USER_AGENT’];
  4. if(strpos((string)$type, “Windows Phone”) != false || strpos((string)$type, “iPhone”) != false || strpos((string)$type, “Android”) != false)
  5. return true;
  6. else
  7. return false;
  8. }
  9. if(mobileDevice() == true)
  10. header(‘Location: DIN-URL-HER‘);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement