我正在建立一个推荐其他好网站的网站。
因此,我使用爬虫系统收集了很多网站。
现在,我正在尝试使用 PHP 来区分网站是否有好词。
$page_content = file_get_contents($url);
$bad_word = 'damn';
if(strstr($page_content, $bad_word)):
$result = 'YES';
else:
$result = 'NO';
endif;
我的代码是这样的。
我使用 Codeigniter 并收到此消息。
An Error Was Encountered
Unable to load your default controller. Please make sure the controller specified in your Routes.php file is valid.
它适用于某些网站,但不适用于其他网站。
有没有其他方法可以检索网站的内容?