Device detection place very important role in applying new strategies for improving business and user experience. So Here is the small PHP function it will redirect user to new location if user device is Andriod.Using PHP’s $_SERVER variable we can analyze requested user agent.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
function detectDevice($agent , $redirect = false) { $user_agent = $_SERVER['HTTP_USER_AGENT']; if(stripos($user_agent,$agent) !== false) { if($redirect) { header('Location:'.$redirect); exit(); } return true; } } // how to use detectAndroiod('android', 'https://arjunphp.com/'); |
I hope you like this Post, Please feel free to comment below, your suggestion and problems if you face - we are here to solve your problems.
I am Arjun from Hyderabad (India). I have been working as a software engineer from the last 7+ years, and it is my passion to learn new things and implement them as a practice. Aside from work, I like gardening and spending time with pets.
Subscribe
Login
0 Comments