我需要一个脚本,它会返回指定单词出现在网页上的次数。有谁知道如何用PHP做到这一点?代码将是这样的:
<?php
$url="watever.com";
the script here
echo(result);
?>
我确实有这一点,只是计算出网页上每个单词出现的次数,但我不太确定如何只修改一个单词。
$str = file_get_contents('http://www.example.com/');
print_r(array_count_values(str_word_count(strip_tags(strtolower($str)), 1)));
答案 0 :(得分:0)
我认为你正在寻找substr_count。
substr_count - 计算子字符串出现次数
答案 1 :(得分:0)
尝试使用substr_count:
$result = (substr_count(strip_tags($str),"mycoolword"));
答案 2 :(得分:0)
使用preg_match - http://php.net/manual/en/function.preg-match.php
其中一个参数是$ matches,如果传递将把所有匹配放在该数组中,所以你可以通过计数来获得计数($ matches)。
php页面有很好的例子,这里有一个:
<?php
$subject = "abcdef";
$pattern = '/^def/';
preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE, 3);
print_r($matches);
?>