在file_get_contents()中获取听不见的短语

时间:2017-08-22 16:00:49

标签: php file-get-contents

我将获取以下页面的源代码。

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);

但获取源代码如下:

source code screenshot

当我在浏览器中运行时,此页面是正确的。但是当by file_get_contents或curl get不正确时。

请帮帮我。谢谢

0 个答案:

没有答案