0

我需要一个脚本来返回指定单词出现在网页上的次数。有谁知道如何用 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)));
4

3 回答 3

0

我认为您正在寻找substr_count

substr_count - 计算子字符串出现的次数

于 2013-04-16T00:17:51.010 回答
0

尝试使用substr_count

$result = (substr_count(strip_tags($str),"mycoolword"));
于 2013-04-16T00:18:24.980 回答
0

研究使用 preg_match - http://php.net/manual/en/function.preg-match.php

其中一个参数是 $matches,如果传递了它会将所有匹配项放入该数组中,因此您可以通过执行 count($matches) 来获得计数。

php页面有很好的例子,这里有一个:

<?php
$subject = "abcdef";
$pattern = '/^def/';
preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE, 3);
print_r($matches);
?>
于 2013-04-16T00:18:33.033 回答