PHP code example of muraveiko / php-curler

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

    

muraveiko / php-curler example snippets

 php


    // booting
    urler; // My fix
    
    // grab google.com contents and display
    $curler = new Curler();
    echo $curler->get('http://www.google.com/');
    exit(0);