有谁知道一个可用的 PHP 函数,它需要一段文本,比如几百个单词,并产生一个关键字数组?IE。最重要、经常出现的独特术语?
谢谢菲利普
不存在这样的功能(如果有的话会很神奇)但是要开始一些事情,您可以执行以下操作:
preg_replace
)。$words[0]
)。这样的事情可能会奏效:
$thestring = 'the most important, frequently occuring unique terms?';
$arrayofwords = explode(" ", $thestring);
echo print_r($arrayofwords);
您也可以将逗号“,”替换为空白,这样您就可以获得干净的关键字。
$thestring = 'the most important, frequently occuring unique terms?';
$cleaned_string = str_replace(",", "", "$thestring");
$arrayofwords = explode(" ", $cleaned_string);
echo print_r($arrayofwords);