PHP正则表达式表现得像mysql匹配

时间:2011-05-31 14:38:22

标签: mysql regex preg-match match match-against

我需要一个PHP正则表达式来比较类似于mysql Match Against行为的字符串。 e:

string = "findmatches";
$pattern = 'fildcatches';

这个模式应该匹配字符串

非常感谢

1 个答案:

答案 0 :(得分:0)

正则表达式可能不是满足您需求的最佳解决方案,请尝试使用PHP构造similar_text():

http://php.net/manual/en/function.similar-text.php

该函数返回两个字符串之间的相似度(百分比)和匹配字符数。