- 締切済み
file_get_contentsなどでrefererを設定する方法。
phpでの質問です。 file_get_contentsなどでファイルを取得できますが、それにreferer(リンク元)を設定したいのです。 どうしたら良いのでしょうか。教えて下さい。 HTTP_clientなどのpearは使えない環境にあります。
- みんなの回答 (1)
- 専門家の回答
みんなの回答
- tany180sx
- ベストアンサー率63% (239/379)
回答No.1
$opts = array( 'http' => array( 'method' => "GET", 'header' => "Referer: http://hoge/\r\n" ) ); $context = stream_context_create($opts); $uri = 'http://hoge2/'; echo file_get_contents($uri, false, $context);