Lightweight PHP 7.2 library that detects users' mobile phone based on the device OS.
composer require ph-7/phonedetector
Below are two simple examples of what you can do with PhoneDetector library.
use PierreHenry\PhoneDetector\PhoneDetector;
$phoneDetector = new PhoneDetector();
if ($phoneDetector->isAndroid()) {
echo 'Your mobile phone is Android!';
}
if ($phoneDetector->isIos()) {
echo 'Your mobile phone runs on iOS';
}
<?php
require 'vendor/autoload.php'; // Include Composer to load the library
use PierreHenry\PhoneDetector\PhoneDetector;
$phoneDetector = new PhoneDetector();
if ($phoneDetector->isAndroid()) {
$url = 'https://play.google.com/store/apps/details?id=com.lifyzer';
} elseif($phoneDetector->isIos()) {
$url = 'https://apps.apple.com/app/longer-life-lifyzer-food-scan/id1466196809';
} else {
$url = 'https://DEFAULT-URL.example';
}
header('Location: ' . $url);
- PHP 7.2 or higher.
Pierre-Henry Soria, a Passionate, Zen&Cool Belgian Software Engineer ๐ง๐ช ๐ซ
I initially created PhoneDetector to redirect users to the correct app's store for https://get.lifyzer.com depending on the mobile device.
https://github.com/Lifyzer/get.lifyzer.com
PhoneDetector library is generously distributed under MIT License.