PHP code example of klepak / php-js-webrequest

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

    

klepak / php-js-webrequest example snippets


$req = (new PhpJsWebRequest);

echo $req->get('https://url.tld');

$req = (new PhpJsWebRequest)
    ->setNodeExecutablePath('path');

echo $req->get('https://url.tld');