<?php
$url = 'http://www.google.com';
$opts = array(
'http'=>array(
'method'=> 'GET',
'header'=>
"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$d = Array();
$context = stream_context_create($opts);
$f = fopen($url, "rb", false, $context);
while($data = fread($f, 1024)) {
$d[] = $data;
}
$content = join("\r\n", $d);
?>