我有一个不同单词的数据库作为条目。例如
ID | words
1 | dog cat mouse elephant bird
2 | man woman child Boy girl
3 | red green blue yellow black white grey
我正在寻找一个函数或脚本来查找我的数据库中的类似条目。例如
$str = "grey white black yellow purple";
-> similar to ID 3, ~ 80%
$str = "snake dog elephant rabbit";
-> similar to ID 1, ~ 10%
$str = "Rom London Berlin Paris";
-> similar to nothing, ~0%
如果有类似的entrie,我如何检查PHP / MySQL?
我不想在我的数据库中有重复的内容。 我不想在一排“自行车飞机列车”和另一排“自行车飞机列车”...
感谢您的帮助!