我将获取以下页面的源代码。
http://www.yjc.ir/fa/rss/allnews
我在我的服务器上运行此代码:
$opts = [
"http" => array(
"method" => "GET",
"header" => "Accept-language: en\r\n" .
"Cookie: foo=bar\r\n"
)
];
$context = stream_context_create($opts);
echo $file = file_get_contents('http://www.yjc.ir/fa/rss/allnews', false, $context);
但获取源代码如下:
当我在浏览器中运行时,此页面是正确的。但是当by file_get_contents或curl get不正确时。
请帮帮我。谢谢