Skip to content

Instantly share code, notes, and snippets.

@acidtib
Created July 25, 2012 19:42
Show Gist options
  • Save acidtib/3178153 to your computer and use it in GitHub Desktop.
Save acidtib/3178153 to your computer and use it in GitHub Desktop.
Detect if mobile
<?php
if (count($_GET) > 0) {
$view = $_GET['view'];
} else {
$agent = $_SERVER['HTTP_USER_AGENT'];
if(preg_match('/iPhone|Android|Blackberry/i', $agent)){
header("Location: http://mobil_site.com/");
exit;
}
}
?>
@acidtib
Copy link
Author

acidtib commented Jul 25, 2012

http://your_site.com?view=desktop will stop the function.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment