PHP解析器被阻止

时间:2016-07-14 10:40:48

标签: php parsing curl

是否有任何人在尝试从网站上播放内容时遇到问题,并且会出现阻止您的安全消息?我首先尝试使用get_file_contents并且已被阻止....所以我尝试使用CURL:

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $URLhttp);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  $page = curl_exec($ch);
  curl_close($ch);

我得到的错误:

  The page you are attempting to access is unable to be served.
  Why has this happened?

Our security systems have detected unusual patterns of behaviour relating to the processing of this request.
This could be because some element of the request submitted by your browser has activated one of the filters we use to protect Rightmove from malicious requests (i.e. attempts to 'hack' the site).
Alternatively it could be because your IP address is sending an unusually high amount of requests to Rightmove; this could either be from your browser or from other browsers that share the same internet proxy (this kind of setup is common in office environments).

某些网站是否可能完全阻止您?有办法吗?

0 个答案:

没有答案
相关问题