Stream_context_create — Creates a stream context.
Creates and returns a stream context with any options supplied in options preset.
<?php
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
$fp = fopen('http://www.phpcodez.com', 'r', false, $context);
fpassthru($fp);
fclose($fp);
?>