Highlight the difference between two strings in PHP

前端 未结 13 2853
独厮守ぢ
独厮守ぢ 2020-11-22 07:50

What is the easiest way to highlight the difference between two strings in PHP?

I\'m thinking along the lines of the Stack Overflow edit history page, where new text

13条回答
  •  没有蜡笔的小新
    2020-11-22 08:28

    I would recommend looking at these awesome functions from PHP core:

    similar_text — Calculate the similarity between two strings

    http://www.php.net/manual/en/function.similar-text.php

    levenshtein — Calculate Levenshtein distance between two strings

    http://www.php.net/manual/en/function.levenshtein.php

    soundex — Calculate the soundex key of a string

    http://www.php.net/manual/en/function.soundex.php

    metaphone — Calculate the metaphone key of a string

    http://www.php.net/manual/en/function.metaphone.php

提交回复
热议问题