-1

関数を使用preg_replaceして、ストップ ワードのリストを削除しています。現在、ストップワードのリストを含む配列があります。のパラメーターとして、preg_replaceこれを最初の引数として使用します (つまり、preg_replace(^$stopwordlist$, '',$string)ご覧のとおり^$、単語を正確に一致させる必要があるため、これも使用しています。ただし、次のエラーが発生します

構文エラー、予期しない '^'、')' が必要です 

ありがとう

4

3 に答える 3

0

If you want to match exact words, REG EXPs and preg_replace are not what you need.

Give a look at str_replace or strtr documentation to find out which one you need.

http://www.php.net/manual/en/function.str-replace.php

http://www.php.net/manual/en/function.strtr.php

于 2013-08-28T06:44:56.617 に答える