$URL = 'どこかのサイト'; $fp = fopen($URL, 'r'); while (! feof($fp)) { print fread($fp, 1024) or die("READ"); } fclose($fp) or die("CLOSE");