PHP code example of el-factory / ip-api

1. Go to this page and download the library: Download el-factory/ip-api 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/ */

    

el-factory / ip-api example snippets


use ElFactory\IpApi\IpApi;

$ipDetails = IpApi::default('188.216.103.93')->lookup();

$ipDetails = IpApi::default('188.216.103.93')->fields(['city', 'country', 'timezone'])->lookup();

$ipDetails = IpApi::default('188.216.103.93')->usingKey('YOUR_API_KEY')->lookup();

$ipDetails = IpApi::default('188.216.103.93')->retry(3, 2)->lookup();

$ipDetails = IpApi::default('188.216.103.93')->lang('en')->lookup();

$ipDetails = IpApi::default('188.216.103.93')->withHeaders()->lookup();
bash
php artisan vendor:publish --tag=ip-api-config
bash
php artisan ip-api:connection {ip?}
bash
php artisan ip-api:connection 188.216.103.93
bash
php artisan ip-api:connection