I'm trying to get the contents from another file with file_get_contents (don't ask why). I have two files: test1.php and test2.php. Test1.php returns a string, bases on the user that is logged in.
Test2.php test1.php içeriğini almak için çalışır ve böylece çerezleri alma, tarayıcı tarafından yürütülmektedir.
File_get_contents ile çerezleri göndermek için, ben bir akış içeriğini oluşturmak:
$opts = array('http' => array('header'=> 'Cookie: ' . $_SERVER['HTTP_COOKIE']."\r\n"))`;
Ben içeriğini retreiving ediyorum:
$contents = file_get_contents("http://www.domain.com/test1.php", false, $opts);
Ama şimdi hata alıyorum:
Uyarı: file_get_contents (http://www.domain.com/test1.php) [function.file-get-içindekiler]: failed to open stream: HTTP isteği başarısız oldu! HTTP/1.1 404 Not Found
Biri burada wroing ne yapıyorum biliyor mu?
edit: forgot to mention: Without the streaming_context, the page just loads. But withouth the cookies I don't get the info I need.