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