有没有人知道一个可用的PHP函数需要一段文本,比如说几百个字长并产生一系列关键字? IE浏览器。最重要的,经常出现的独特术语?
由于 菲利普
答案 0 :(得分:7)
不存在这样的功能(如果确实存在的话会很神奇)但是要开始做某事,你可以做到以下几点:
preg_replace
)。$words[0]
)。答案 1 :(得分: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);