0

我正在使用停止词来删除一些连词:像这样,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 就像数组一样,包括停用词,然后从文件中删除句子,我该怎么办?

请帮忙。

谢谢楼主:)

4

2 回答 2

0

试试这个

$fh = fopen("search/E_a_02.txt", "r");

$file = file_get_contents("search/E_a_02.txt");

$stop=array("BI","BE");

echo str_replace($stop, "", $file);

希望这能解决你的问题。

于 2013-09-23T04:26:31.853 回答
0

尝试:

$stop = array("this","the","in");
echo str_replace($stop, "", $file);

它应该替换 $file 中所有出现的 $stop

于 2013-09-23T04:33:50.833 回答