fork download
  1. <?php
  2. $site_url = 'http://e...content-available-to-author-only...e.com';
  3. $ch = curl_init();
  4. $timeout = 5; // set to zero for no timeout
  5. curl_setopt ($ch, CURLOPT_URL, $site_url);
  6. curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  7.  
  8. curl_exec($ch);
  9. $file_contents = ob_get_contents();
  10.  
  11. echo $file_contents;
  12. ?>
Success #stdin #stdout 0.04s 26136KB
stdin
Standard input is empty
stdout
Standard output is empty