PHP - 比较数组元素的相似性并创建新数组,其中最相似的对排名第一
假设我有一系列这样的句子
- “伟大的白狐狸跳了”
- “我喜欢那样”
- “伟大的白母鸡吃”
- “今天是星期五”
- “哈哈哈,我跳得很厉害”
我想将每个句子与彼此使用php的similar_text函数,并用这些对创建一个新数组,这样我就得到一个以最相似对和相似率开始的新数组。
Say I have an array of sentences like this
- "great white fox jumped"
- "I like it like that"
- "great white hen eats"
- "Today is friday"
- "hahaha, I did a great jump"
I would like to compare each sentence to each other with php similar_text function, and create a new array with these pairs so that I get a new array starting with most similar pairs and the similarity ratio.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: