为什么我收到此错误注意:未定义索引:主机

时间:2012-03-27 02:58:53

标签: php

我的示例代码在这里

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 />";
}

当我尝试这段代码时,我收到了这个错误:注意:未定义的索引:host in ...我的代码有什么问题?请建议我一些帮助代码,在此先感谢。

3 个答案:

答案 0 :(得分:4)

在假设数组存在之前,您需要使用isset检查数组是否包含'host'的条目:

if (isset($host1['host']) && isset($host['host']) 
        && $host1['host'] == $host['host']) {

或者你可以从支票中use @ to suppress warnings

if (@$host1['host'] == @$host['host']) {

但是,当两者都缺失时,你需要仔细检查后者是否正常工作。

更新:正如其他人所指出的,还有array_key_exists。它将处理null数组值,而isset会返回falsenull

答案 1 :(得分:2)

正如其他人所回答的那样,isset()array_key_exists()都可以在此处运作。 isset()很好,因为它实际上可以采用多个参数:

if (isset($array[0], $array[1], $array[2]))
{
    // ...
}

// same as

if (isset($array[0]) && isset($array[1]) && isset($array[2]))
{
    // ...
}

仅在设置了所有参数时返回true

答案 2 :(得分:0)

你可以使用array_key_exists

找出一个数组是否有一个名为“host”的索引
if (array_key_exists($host, "host") && array_key_exists($host1, "host") && ...)

http://us3.php.net/manual/en/function.array-key-exists.php