首頁  >  文章  >  後端開發  >  通过php的 similar_text函数比较两个字符串的相似性

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

WBOY
WBOY原創
2016-07-25 08:45:281000瀏覽
通过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


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn