所以我正在创建一个脚本,根据用户提交的URL检查页面的关键字密度,我一直在使用strip_tags,但它似乎并没有完全过滤javascript和实际单词中的其他代码网站上的内容。有没有更好的方法来过滤页面上的代码内容和实际的单词内容?
if(isset($_POST['url'])){
$url = $_POST['url'];
$str = strip_tags(file_get_contents($url));
$words = str_word_count(strtolower($str),1);
$word_count = array_count_values($words);
foreach ($word_count as $key=>$val) {
$density = ($val/count($words))*100;
echo "$key - COUNT: $val, DENSITY: ".number_format($density,2)."%<br/>\n";
}
}
答案 0 :(得分:0)
我为此写了两个函数:
/**
* Removes all Tags provided from an Html string
*
* @param string $str The Html String
* @param string[] $tagArr An Array with all Tag Names to be removed
*
* @return string The Html String without the tags
*/
function removeTags($str, $tagArr)
{
foreach ($tagArr as $tag) {
$str = preg_replace('#<' . $tag . '(.*?)>(.*?)</' . $tag . '>#is', '', $str);
}
return $str;
}
/**
* cleans some html string
*
* @param string $str some html string
*
* @return string the cleaned string
*/
function filterHtml($str)
{
//Remove Tags
$str = removeTags($str, ['script', 'style']);
//Remove all Tags, but not the Content
$str = preg_replace('/<[^>]*>/', ' ', $str);
//Remove Linebreaks and Tabs
$str = str_replace(["\n", "\t", "\r"], ' ', $str);
//Remove Double Whitespace
while (strpos($str, ' ') !== false) {
$str = str_replace(' ', ' ', $str);
}
//Return trimmed
return trim($str);
}
工作示例
$fileContent = file_get_contents('http://stackoverflow.com/questions/25537377/filtering-html-from-site-content-php');
$filteredContent = filterHtml($fileContent);
var_dump($filteredContent);
答案 1 :(得分:0)
您需要的是解析HTML,以便您拥有类似DOM的结构,您可以迭代并访问不同节点的内容。