2017-04-12 170 views
0

我想從網站提取數據,但我收到警告。HTTP請求失敗! HTTP/1.1 403 Forbidden

<?php 
     include("simple_html_dom.php"); 
     $html = file_get_html("https://ffs-gaming.com/clans.php?clanid=1264"); 
     $title = $html->find("div.number", 0)->innertext; 
     echo $title; 
    ?> 

與其他網站的工作很好,但它不與這一個。 我收到這個警告。

Warning: file_get_contents(https://ffs-gaming.com/clans.php?clanid=1264): failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in C:\xampp\htdocs\simple_html_dom.php on line 75

Fatal error: Call to a member function find() on boolean in C:\xampp\htdocs\index.php on line 12

在此先感謝!

回答