我有需要更改的PHP代码行
while (eregi("([-]?)\"([^\"]+)\"", $a, $regs)) {
到
while (preg_match("([-]?)\"([^\"]+)\"", $a, $regs)) {
和
if (strlen($word) < $min_word_length || (!eregi($pattern, remove_accents($word))) || ($common[$word] == 1)) {
到
if (strlen($word) < $min_word_length || (!preg_match($pattern, remove_accents($word))) || ($common[$word] == 1)) {
我尝试了所有可能的(我可以)组合,我在google上搜索过,但也无法弄明白。
答案 0 :(得分:1)
试试这个“/([ - ]?)\”([^ \“] +)\”/“(我只是在字符串”/ $ pattern“的开头和结尾添加”/“ /“)
if (strlen($word) < $min_word_length || (!preg_match("/$pattern/", remove_accents($word))) || ($common[$word] == 1)) {