我的樣本代碼是在這裏爲什麼我得到這個錯誤的通知:未定義指數:主機
include 'simple_html_dom.php';
function get_all_links($url){
global $host;
$html = new simple_html_dom();
$html->load(file_get_contents($url));
foreach($html->find('a') as $a){
$host1 = parse_url($a->href);
$host = parse_url($url);
if($host1['host'] == $host['host']){
$data[] = $a->href;
}
}
return $data;
}
$links = get_all_links("http://www.example.com/");
foreach($links as $link){
echo $link."<br />";
}
當我嘗試這個代碼,我得到這個錯誤:注意:未定義指數:主機...什麼是錯的在我的代碼?請給我一些幫助代碼,謝謝提前。
echo'
'; - 這會給你什麼? – mikevoermans 2012-03-27 03:07:39