Created
May 30, 2012 18:22
-
-
Save sergej-brazdeikis/2838114 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if ($detect->isIpad()) { | |
| // code to run for the iPad platform | |
| } | |
| if ($detect->isIphone()) { | |
| // code to run for the iPhone platform | |
| } | |
| if ($detect->isAndroid()) { | |
| // code to run for the Google Android platform | |
| } | |
| if ($detect->isMobile()) { | |
| // any mobile platform | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment