Usually, you can use fopen(), fread(), fclose() using the URL as the file name:
$url = 'http://www.domain.com/page.html';
$handle = fopen($url, 'r');
$data = fread($handle, #); // where # is the number of bytes you want to read into the string
fclose($handle);