Search This Blog

Loading...

Thursday, December 1, 2011

How to set referer in php file_get_contents

$referer = "http://abc.info";
$opts = array(
           'http'=>array(
               'header'=>array("Referer: $referer\r\n")
           )
       );
$context = stream_context_create($opts);
file_put_contents($img, file_get_contents($node_img, false, $context));

0 comments:

Post a Comment

LinkWithin

Related Posts with Thumbnails