Skip to content

Instantly share code, notes, and snippets.

@elizov
Last active April 28, 2016 08:36
Show Gist options
  • Save elizov/288549b53e1f41f7f3ca447b12ce694f to your computer and use it in GitHub Desktop.
Save elizov/288549b53e1f41f7f3ca447b12ce694f to your computer and use it in GitHub Desktop.
Определить iOS/Android
<?php
function getDevice(){
$device = [];
if(preg_match('/(iPhone|iPod|iPad|Android)/', $_SERVER['HTTP_USER_AGENT'], $device)){
return $device[0];
}
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment