先将两个文件的内容写入字符串,然后利用similar_text()字符串比较函数比较相似度
header("content-type:text/html;charset=utf-8");
//将文件1写入一个字符串
$file1 = file_get_contents("./xiaojj.php");
//将文件2写入另一个字符串
$file2 = file_get_contents("yzm.php");
//利用字符串相似的函数返回相似度
similar_text( $file1, $file2 , $precent);
//获得两个字符串相似的程度
echo $precent . '%';