无法使用 cUrl 或 file_get_contents 获取 html 源代码

can't get html source code with cUrl or file_get_contents

抱歉无法获取此 url 的 html 源代码:http://www.picbear.com/tag/ok;

我总是收到带有 ["Hello Stranger"] 消息的空白页。

如果我使用 chrome 的工具没有问题。

我一直使用 file_get_contentsphp_simple_html DOM 解析器,没有任何问题。

由于我的提供商限制,我无法访问 php.ini,但应该没问题。

帮助任何人?谢谢。

$url = "http://www.picbear.com/tag/ok";

$html = file_get_contents($url);

echo $html;

只需添加User-Agent header:

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => "http://picbear.com/tag/ok",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => array(
    "cache-control: no-cache",
    "user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36" // Here we add the header
  ),

));

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}