闲者博客 - 相似
https://bk1314.com/tag/%E7%9B%B8%E4%BC%BC/
-
PHP寻找两个字符串的相似性
https://bk1314.com/42.html
2022-02-25T18:57:11+08:00
[scode type="blue"]PHP 提供了一个极少使用的 similar_text 函数,但此函数非常有用,用于比较两个字符串并返回相似程度的百分比。[/scode]<?php
similar_text($string1, $string2, $percent);
//$percent will have the percentage of similarity
?>