0

我想与一组文本进行比较并了解它们彼此之间的相似/相关程度,我使用了similar_text(),但我发现它并不准确。谢谢你。

例如下面的文字给了我 66%

Text1:创新游戏,吃,睡,呼吸创新。它热爱创造力和激情动力互联网驱动器。我们了解时间最大的财富,挑战满足期限。

文本2:苏联共产主义政策;德国联赛组织伪装仇敌被通缉。

我的代码如下:

echo $student_answer = removeCommonWords($answer)."<br><br>";

$student_answer = strip_tags($student_answer);

echo $memo = removeCommonWords2($memo)."<br><br>";

echo similar_text($memo, $student_answer);
4

1 回答 1

0

可以使用 JS 版本:

http://phpjs.org/functions/similar_text/

JS 代码显示你之前的代码(你可以修改代码):

return (sum * 200) / (firstLength + secondLength);

我希望这能帮到您!

编辑:

如何在 JS 中使用similar_text?

  1. 创建一个名为similar_text.js 的文件并在其中复制并粘贴此代码:

     function similar_text (first, second, percent) {
     // http://kevin.vanzonneveld.net
     // +   original by: Rafał Kukawski (http://blog.kukawski.pl)
     // +   bugfixed by: Chris McMacken
     // +   added percent parameter by: Markus Padourek (taken from http://www.kevinhq.com/2012/06/php-similartext-function-in-javascript_16.html)
     // *     example 1: similar_text('Hello World!', 'Hello phpjs!');
     // *     returns 1: 7
     // *     example 2: similar_text('Hello World!', null);
     // *     returns 2: 0
     // *     example 3: similar_text('Hello World!', null, 1);
     // *     returns 3: 58.33
     if (first === null || second === null || typeof first === 'undefined' || typeof second === 'undefined') {
       return 0;
     }
    
     first += '';
     second += '';
    
     var pos1 = 0,
       pos2 = 0,
       max = 0,
       firstLength = first.length,
       secondLength = second.length,
       p, q, l, sum;
    
     max = 0;
    
     for (p = 0; p < firstLength; p++) {
       for (q = 0; q < secondLength; q++) {
         for (l = 0;
         (p + l < firstLength) && (q + l < secondLength) && (first.charAt(p + l) === second.charAt(q + l)); l++);
         if (l > max) {
           max = l;
           pos1 = p;
           pos2 = q;
         }
       }
     }
    
     sum = max;
    
     if (sum) {
       if (pos1 && pos2) {
         sum += this.similar_text(first.substr(0, pos2), second.substr(0, pos2));
       }
    
       if ((pos1 + max < firstLength) && (pos2 + max < secondLength)) {
         sum += this.similar_text(first.substr(pos1 + max, firstLength - pos1 - max), second.substr(pos2 + max, secondLength - pos2 - max));
       }
     }
    
     if (!percent) {
       return sum;
     } else {
       return (sum * 200) / (firstLength + secondLength);
     }
    }
    
  2. 在您输入以下行:

      <script type="text/JavaScript" src="YOUR_PATH/similar_text.js"></script>
    
  3. 现在您可以在体内使用它:

      <script>
       similar_text('Hello World!', 'Hello phpjs!');
      </script>
    

它将输出 7。

希望这会帮助你!

于 2013-07-10T11:27:17.877 回答