PHP code example of utopia-php / dns

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

    

utopia-php / dns example snippets




ppwrite\DNS\Server;
use Appwrite\DNS\Adapter\Swoole;
use Appwrite\DNS\Resolver\Mock;

$server = new Swoole('0.0.0.0', 8000); // Swoole based UDP server running on port 8000
$resolver = new Mock(); // Mock resolver. Always returns 127.0.0.1 as the result

$dns = new Server($server, $resolver);

$dns->start();
 


opia\DNS\Client;

$client = new Client('8.8.8.8'); // Query against Google's public DNS

try {
    // Query for A records for example.com
    $records = $client->query('example.com', 'A');
    
    foreach ($records as $record) {
        echo 'Name: '   . $record->getName()   . "\n";
        echo 'Type: '   . $record->getTypeName() . "\n";
        echo 'TTL: '    . $record->getTTL()      . "\n";
        echo 'Data: '   . $record->getRdata()    . "\n\n";
    }
    
    // Query for other record types (e.g. MX, TXT, AAAA, SRV)
    // $mxRecords = $client->query('example.com', 'MX');
    // $txtRecords = $client->query('example.com', 'TXT');
    // ...
    
} catch (Exception $e) {
    echo "DNS query failed: " . $e->getMessage();
}
bash
composer 
bash
# Run with default settings
php tests/benchmark.php

# Run with custom configuration
php tests/benchmark.php --server=127.0.0.1 --port=5300 --iterations=1000 --concurrency=20