Skip to content

Instantly share code, notes, and snippets.

@Zalki-Lab
Created November 23, 2017 23:23
<?php
$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( $iPod || $iPhone || $iPad ){
echo "ios";
}else if($Android){
echo "android";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment