我正在使用停止词来删除一些连词:像这样,the,in。
我仍在使用读取字符串然后从文件中替换然后删除那些连词,这是代码
$fh = fopen("search/E_a_02.txt", "r");
$file = file_get_contents("search/E_a_02.txt");
$stop="BI";
echo str_replace($stop, "", $file);
我希望变量 $stop 就像数组一样,包括停用词,然后从文件中删除句子,我该怎么办?
请帮忙。
谢谢楼主:)