PHP code example of mathsgod / webnic-client-php

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

    

mathsgod / webnic-client-php example snippets


use WebNIC\Client;

$client = new Client('your-client-id', 'your-secret');



print_r($client->domain()->whois('example.com'));


composer