php比较相似字符串的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-27 15:37:35 浏览: 评论:0
这篇文章主要介绍了php比较相似字符串的方法,通过php中similar_text函数来实现字符串的相似性比较功能,需要的朋友可以参考下。
本文实例讲述了php比较相似字符串的方法,分享给大家供大家参考,具体分析如下:
这里通过php的similar_text函数比较两个字符串的相似性。
- $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%
- */
希望本文所述对大家的php程序设计有所帮助。
Tags: php相似字符串
- 上一篇:浅谈PHP接收POST数据方式
- 下一篇:php查询whois信息的方法
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)