Heim  >  Artikel  >  Backend-Entwicklung  >  通过php的 similar_text函数比较两个字符串的相似性

通过php的 similar_text函数比较两个字符串的相似性

WBOY
WBOYOriginal
2016-07-25 08:45:281001Durchsuche
通过php的 similar_text函数比较两个字符串的相似性
  1. $word2compare = "stupid";
  2. $words = array(
  3. 'stupid',
  4. 'stu and pid',
  5. 'hello',
  6. 'foobar',
  7. 'stpid',
  8. 'upid',
  9. 'stuuupid',
  10. 'sstuuupiiid',
  11. );
  12. while(list($id, $str) = each($words)){
  13. similar_text($str, $word2compare, $percent);
  14. print "Comparing '$word2compare' with '$str': ";
  15. print round($percent) . "%\n";
  16. }
  17. /*
  18. Results:
  19. Comparing 'stupid' with 'stupid': 100%
  20. Comparing 'stupid' with 'stu and pid': 71%
  21. Comparing 'stupid' with 'hello': 0%
  22. Comparing 'stupid' with 'foobar': 0%
  23. Comparing 'stupid' with 'stpid': 91%
  24. Comparing 'stupid' with 'upid': 80%
  25. Comparing 'stupid' with 'stuuupid': 86%
  26. Comparing 'stupid' with 'sstuuupiiid': 71%
复制代码

php, similar


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn