目录

PHP similar_text() 函数

❮ PHP 字符串参考

示例

计算两个字符串之间的相似度并返回匹配的字符:

<?php
echo similar_text("Hello World","Hello Peter");
?>
亲自试一试 »

定义和用法

simple_text() 函数计算两个字符串之间的相似度。

它还可以计算两个字符串的相似度百分比。

笔记:这个编辑()函数比similar_text()函数更快。但是,similar_text() 函数将为您提供更准确的结果,并且所需的修改更少。


语法

similar_text( string1,string2,percent)

参数值

Parameter Description
string1 Required. Specifies the first string to be compared
string2 Required. Specifies the second string to be compared
percent Optional. Specifies a variable name for storing the similarity in percent

技术细节

返回值: 返回两个字符串的匹配字符数
PHP 版本: 4+

更多示例

示例

计算两个字符串之间的相似度百分比:

<?php
similar_text("Hello World","Hello Peter",$percent);
echo $percent;
?>
亲自试一试 »

❮ PHP 字符串参考