php 通过 similar_text函数比较两个字符串相似程度

前端之家收集整理的这篇文章主要介绍了php 通过 similar_text函数比较两个字符串相似程度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
代码演示了如何通过PHP的 similar_text函数比较两个字符串的相似性,PHP比较相似字符串,感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
经测试代码如下:

/**
 * 通过 similar_text函数比较两个字符串的相似性
 *
 * @param 
 * @arrange (512.笔记) jb51.cc
 **/
$word2compare = "stupid";
 
$words = array(
    'stupid','stu and pid','hello','foobar','stpid','upid','stuuupid','sstuuupiiid',);
 
while(list($id,$str) = each($words)){
    similar_text($str,$word2compare,$percent);
    print "Comparing '$word2compare' with '$str': ";
    print round($percent) . "%\n";
}
 
/*
Results:
 
Comparing 'stupid' with 'stupid': 100%
Comparing 'stupid' with 'stu and pid': 71%
Comparing 'stupid' with 'hello': 0%
Comparing 'stupid' with 'foobar': 0%
Comparing 'stupid' with 'stpid': 91%
Comparing 'stupid' with 'upid': 80%
Comparing 'stupid' with 'stuuupid': 86%
Comparing 'stupid' with 'sstuuupiiid': 71%
*/


/***   代码来自编程之家 jb51.cc(jb51.cc)   ***/
原文链接:https://www.f2er.com/php/528944.html

猜你在找的PHP相关文章