PHP code example of paravibe / perfops

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

    

paravibe / perfops example snippets


$client = new Client();
$client->setToken('YOUR_TOKEN');

$request = new Request($client);
$request->attachBody([
    "target" => "google.com",
    "param" => "A",
    "dnsServer" => "8.8.8.8",
    "nodes" => "",
    "location" => "Germany",
    "limit" => "1"
]);

$response = $request->request('/run/dns-resolve');
$id = json_decode($response->getBody());

$request = new Request($client);
$response = $request->request('/run/dns-resolve/' . $id->id);