PHP code example of graftype / speedtest-php

1. Go to this page and download the library: Download graftype/speedtest-php 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/ */

    

graftype / speedtest-php example snippets


{
    "  // ---
        // Other packages
        // ---
        "graftype/speedtest-php": "^1.0"
    }
}

{
    "  "graftype/speedtest-php": "^1.0"
    }
}

cd /path-to-app/
composer update



$speedtest = new Graftype\Speedtest\Speedtest();
$speedtest->getServers();
$speedtest->getBestServer();
$speedtest->download();
$speedtest->upload();

$results = $speedtest->results();

print_r($results);



$config = new Graftype\Speedtest\Config();
$config->setCallback(function ($results) { print_r($results); });

$speedtest = new Graftype\Speedtest\Speedtest($config);
$speedtest->getServers();
$speedtest->getBestServer();
$speedtest->download();