文字

similar_text

(PHP 4, PHP 5)

similar_text计算两个字符串的相似度

说明

int similar_text ( string $first , string $second [, float &$percent ] )

两个字符串的相似程度计算依据 Programming Classics: Implementing the World's Best Algorithms by Oliver (ISBN 0-131-00413-1) 的描述进行。注意该实现没有使用 Oliver 虚拟码中的堆栈,但是却进行了递归调用,这个做法可能会导致整个过程变慢或变快。也请注意,该算法的复杂度是 O(N**3),N 是最长字符串的长度。

参数

first

第一个字符串。

second

第二个字符串。

percent

通过引用方式传递第三个参数, similar_text() 将计算相似程度百分数。

返回值

返回在两个字符串中匹配字符的数目。

参见

  • levenshtein() - 计算两个字符串之间的编辑距离
  • soundex() - Calculate the soundex key of a string

用户评论:

[#1] donotspamme at mailinator dot com [2015-03-04 13:39:44]

@I_HATE_SPAMMER- PAZ! (http://php.net/similar_text#115994)
Not only will your code fail the "turkey test" (google it), and for a matter most comments here that use strtoupper()/strtolower(), it also depends very much on the use-case; maybe I wanted the 75% ? I don't see the value of such comments; this is something everybody could've come op with. It's basic programming and turning requirements into algorithms.

[#2] I_HATE_SPAMMER- PAZ! [2014-10-24 09:59:20]

Actually similar_text() is not bad...
it works good. But before processing i think is a good way to make a little mod like this

$var_1 = strtoupper("doggy");
$var_2 = strtoupper("Dog");

similar_text($var_1, $var_2, $percent); 

echo $percent; // output is 75 but without strtoupper output is 50

[#3] ryan at derokorian dot com [2014-03-04 21:00:42]

Note that this function is case sensitive:

<?php

$var1 = 'Hello';
$var2 = 'Hello';
$var3 = 'hello';

echo similar_text($var1, $var2);  // 5
echo similar_text($var1, $var3);  // 4

[#4] SPAM HATER [2012-07-23 18:16:06]

Hey there,

Be aware when using this function, that the order of passing the strings is very important if you want to calculate the percentage of similarity, in fact, altering the variables will give a very different result, example :

<?php
$var_1 
'PHP IS GREAT';
$var_2 'WITH MYSQL';

similar_text($var_1$var_2$percent);

echo 
$percent;
// 27.272727272727

similar_text($var_2$var_1$percent);

echo 
$percent;
// 18.181818181818
?>

[#5] daniel dot karbach at localhorst dot tv [2010-12-17 06:48:52]

Please note that this function calculates a similarity of 0 (zero) for two empty strings.

<?php
similar_text
(""""$sim);
echo 
$sim// "0"
?>

[#6] romain dot boyer at gmail dot com [2007-08-08 05:59:30]

Like levenchtein(), You can do :

(strlen($string2) - similar_text($string,$string2))

to see how much characters have been changed.

[#7] Paul [2007-01-18 20:50:06]

The speed issues for similar_text seem to be only an issue for long sections of text (>20000 chars).

I found a huge performance improvement in my application by just testing if the string to be tested was less than 20000 chars before calling similar_text.

20000+ took 3-5 secs to process, anything else (10000 and below) took a fraction of a second.
Fortunately for me, there was only a handful of instances with >20000 chars which I couldn't get a comparison % for.

[#8] louis #at# mulliemedia.com [2004-06-06 17:01:07]

Note that this function will calculate the percentage blindly, without regard to the LENGHT of the string.

This may become important if you try to print similar names to SMALL strings :
e.g.
I want to print out the value if it is 90 percent similar to the other one : the value is HE, the correct value is HEC

The similar_text() function will return approximately 66.7 %, and it will not print it because it is smaller than 90 %, although almost all of the string was matched.

[#9] hate at spam dot com dot BR [2004-05-09 21:21:23]

In PHP4+, you don't need to pass the percent variable as reference..
Instead, use this way:

<?php
similar_text
($string1$string2$p);
echo 
"Percent: $p%";
?>


In PHP5, you'll get a ugly warning message when passing this variable as reference.. But it's configurable in php.ini (allow_call_time_pass_reference = Off)

That's it... Another great function! :)

[#10] julius at infoguiden dot no [2003-02-06 06:46:37]

If you have reserved names in a database that you don't want others to use, i find this to work pretty good. 
I added strtoupper to the variables to validate typing only. Taking case into consideration will decrease similarity. 

<?php
$query 
mysql_query("select * from $table") or die("Query failed");

while (
$row mysql_fetch_array($query)) {
      
similar_text(strtoupper($_POST['name']), strtoupper($row['reserved']), $similarity_pst);
      if (
number_format($similarity_pst0) > 90){
        
$too_similar $row['reserved'];
        print 
"The name you entered is too similar the reserved name &quot;".$row['reserved']."&quot;";
        break;
       }
    }
?>

[#11] georgesk at hotmail dot com [2002-03-08 20:14:41]

Well, as mentioned above the speed is O(N^3), i've done a longest common subsequence way that is O(m.n) where m and n are the length of str1 and str2, the result is a percentage and it seems to be exactly the same as similar_text percentage but with better performance... here's the 3 functions i'm using..

<?php
function LCS_Length($s1$s2)
{
  
$m strlen($s1);
  
$n strlen($s2);

  
//this table will be used to compute the LCS-Length, only 128 chars per string are considered
  
$LCS_Length_Table = array(array(128),array(128)); 
  
  
  
//reset the 2 cols in the table
  
for($i=1$i $m$i++) $LCS_Length_Table[$i][0]=0;
  for(
$j=0$j $n$j++) $LCS_Length_Table[0][$j]=0;

  for (
$i=1$i <= $m$i++) {
    for (
$j=1$j <= $n$j++) {
      if (
$s1[$i-1]==$s2[$j-1])
        
$LCS_Length_Table[$i][$j] = $LCS_Length_Table[$i-1][$j-1] + 1;
      else if (
$LCS_Length_Table[$i-1][$j] >= $LCS_Length_Table[$i][$j-1])
        
$LCS_Length_Table[$i][$j] = $LCS_Length_Table[$i-1][$j];
      else
        
$LCS_Length_Table[$i][$j] = $LCS_Length_Table[$i][$j-1];
    }
  }
  return 
$LCS_Length_Table[$m][$n];
}

function 
str_lcsfix($s)
{
  
$s str_replace(" ","",$s);
  
$s ereg_replace("[????????]","e"$s);
  
$s ereg_replace("[????????????]","a"$s);
  
$s ereg_replace("[????????]","i"$s);
  
$s ereg_replace("[?????????]","o"$s);
  
$s ereg_replace("[????????]","u"$s);
  
$s ereg_replace("[?]","c"$s);
  return 
$s;
}
  
function 
get_lcs($s1$s2)
{
  
//ok, now replace all spaces with nothing
  
$s1 strtolower(str_lcsfix($s1));
  
$s2 strtolower(str_lcsfix($s2));
  
  
$lcs LCS_Length($s1,$s2); //longest common sub sequence

  
$ms = (strlen($s1) + strlen($s2)) / 2;

  return ((
$lcs*100)/$ms);
}
?>


you can skip calling str_lcsfix if you don't worry about accentuated characters and things like that or you can add up to it or modify it for faster performance, i think ereg is not the fastest way?
hope this helps.
Georges

[#12] daniel at reflexionsdesign dot com [2001-10-09 18:30:24]

If performance is an issue, you may wish to use the levenshtein() function instead, which has a considerably better complexity of O(str1 * str2).

[#13] mogmios at hushmail dot com [2000-02-01 17:39:54]

Don't forget your passing the double as a reference. If you use this and soundex() together you can get a pretty good guess as to how well two words match. Is useful for simple bot-like programs.

<?php
$i 
similar_text($first_word$second_word, &$p);
echo(
"Matched: $i  Percentage: $p%");
?>

上一篇: 下一篇: