PHP code example of balpom / guzzle-downloader

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

    

balpom / guzzle-downloader example snippets


$downloader = new \Balpom\GuzzleDownloader\Downloader();
$downloader = $downloader->get('https://ipmy.ru/ip');
$result = $downloader->result();
echo $result ->code() . PHP_EOL; // Must be 200.
echo $result ->content() . PHP_EOL; // Must be your IP.
echo $result ->mime() . PHP_EOL; // Must be "text/html".

print_r($result->response());