We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

lfatr on 06/04/08


Tagged

fopen fread fclose


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

mrjthethird


read remote file


Published in: PHP 


  1. <?php
  2. $handle = fopen("http://www.example.com/", "rb");
  3. $contents = '';
  4. while (!feof($handle)) {
  5. $contents .= fread($handle, 8192);
  6. }
  7. fclose($handle);
  8. ?>

Report this snippet 

You need to login to post a comment.