以下の 2 つの文を比較する必要があり、出力は一致のパーセンテージである必要があります
A: 上級管理者、生産
B: 上級管理職、生産販売
文の各単語を比較してみました(以下のコード)。動作しますが、効率的な方法が必要です。
public function contact_title_match($old_title,$new_title)
{
$new_title=preg_replace('/[^a-zA-Z0-9_ %\[\]\.\(\)%&-]/s', '', $new_title);
$new_title_arr=explode(" ",$new_title);
$count=count($new_title_arr);
$index=0;
if($count>0)
{
foreach($new_title_arr as $title_word)
{
if(stripos($old_title,$title_word)!==false)
$index++;
}
if(($index/$count)>= 0.5) return 1;
else return 0;
}
}