0

我有以下内容可以根据 url 检查关键字列表:

function searchUrls()
{
    $result = array();

    $urlList = file("link_to.txt");
    $keywordList = explode("\n", file_get_contents("link_to.txt"));

    for($index = 0; $index <count($urlList); $index++)  
    {  
        $urlList[$index] = str_replace("\n", "", $urlList[$index]);  
        $data = file_get_contents("$urlList[$index]"); 

        $keywords = array();
        foreach($keywordList as $keyword)
        {  
            if (stripos($data, $keyword) !== false) 
            {
                $keywords[] = $Keyword.'found';
            } 
        }
        $result[] = array('url' => $urlList[$index], 'status' => $keywords);
    }  
return $result;
}

回声时 foreach($result['status'] as $keyword)

只有“找到”正在打印。

变量上 var_dump($results) 没有存储在数组中,但文本是?

这如何才能呼出变量和文本?

非常感谢

4

0 回答 0