我有一个远程页面的收据:
$page = file_get_contents ('http://sayt.ru/');
有一个单词数组:
$word = array ("word", "second");
如何计算数组中与页面上的文本匹配的单词数?开始往那个方向挖
$matches = array ();
$count_words = preg_match_all ('/'. $word. '/ i',$page, $matches);
但肯定不是我挖掘的方向,因为计数始终为零。并且通过 preg_match_all 去寻找一个词,而不是整个数组。: (