file_get_contents不适用于某些链接

时间:2017-10-24 14:43:55

标签: php file-get-contents

我正在尝试通过 file_get_contents()获取网站的内容,但它不起作用。我已经尝试遵循这些代码here,但它不起作用。 这是我的代码:

$url = "https://www.cb01.uno/";
$options = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
          "Cookie: foo=bar\r\n" .  // check function.stream-context-create on php.net
          "User-Agent: Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.102011-10-16 20:23:10\r\n" // i.e. An iPad
  )
);

$context = stream_context_create($options);
echo $file = file_get_contents($url, false, $context);

它什么都不返回。我试过像https://www.w3schools.com这样的其他网站并且它有效,所以问题不在于HTTPS

编辑:我尝试了此解决方案HTTP request failed! HTTP/1.1 503 Service Temporarily Unavailable,现在显示:
未找到
在此服务器上找不到请求的URL / cdn-cgi / l / chk_jschl。

0 个答案:

没有答案