我想解析通過http://whatismyip.com頁面並得到我的位置(州和國家)。數據似乎在<table class="table">
標籤內,所以我正在尋找「表」。 但我得到一個錯誤Warning: file_get_contents(https://whatismyip.com): failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in C:\xampp4\htdocs\scraping\libs\simple_html_dom.php on line 1081
簡單的HTML DOM無法打開一個網站的流
無法弄清楚什麼是錯的。
<?php
require_once('libs/simple_html_dom.php');
$html=new simple_html_dom();
$html->load_file('https://whatismyip.com');
$element=$html->find("table");
?>
看起來像whatismyip.com阻止你這樣做 – Brett