PHP code example of jbinfo / mobile-detect-service-provider

1. Go to this page and download the library: Download jbinfo/mobile-detect-service-provider library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jbinfo / mobile-detect-service-provider example snippets


use Silex\Application;
use Binfo\Silex\MobileDetectServiceProvider;

$app = new Application();

$app->register(new MobileDetectServiceProvider());

if ($app["mobile_detect"]->isMobile()) {
    echo "Mobile device";
    
} else {
    echo "Desktop device";
}

echo $app["mobile_detect"]->version('iPad');