Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nhantam/a12b9da4fa5c797edf80d377b9a23f1e to your computer and use it in GitHub Desktop.
Save nhantam/a12b9da4fa5c797edf80d377b9a23f1e 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';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment