Skip to content

Instantly share code, notes, and snippets.

@jeonghwan-kim
Created October 14, 2013 01:48
Show Gist options
  • Save jeonghwan-kim/6969552 to your computer and use it in GitHub Desktop.
Save jeonghwan-kim/6969552 to your computer and use it in GitHub Desktop.
Detect mobile devices such as iPhone, android phone.
<?php
//Detect devices
$iPod = stripos($_SERVER['HTTP_USER_AGENT'],"iPod");
$iPhone = stripos($_SERVER['HTTP_USER_AGENT'],"iPhone");
$iPad = stripos($_SERVER['HTTP_USER_AGENT'],"iPad");
$Android = stripos($_SERVER['HTTP_USER_AGENT'],"Android");
if ( $Android )
echo 'Android';
else if ( $iPod || $iPhone || $iPad )
echo 'iPhone';
else
echo 'Desktop';
?>
@ahmed-hdeawy
Copy link

thanks it works fine

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