リモートページの領収書があります:
$page = file_get_contents ('http://sayt.ru/');
単語の配列があります:
$word = array ("word", "second");
ページ上のテキストと一致する配列内の単語数をカウントする方法は? 方向に掘り始めました
$matches = array ();
$count_words = preg_match_all ('/'. $word. '/ i',$page, $matches);
しかし、count は常に 0 であるため、掘り下げる方向ではありません。そして preg_match_all を介して、配列全体ではなく、1 つの単語を求めました。: (