Highlight the difference between two strings in PHP

前端 未结 13 2446
独厮守ぢ
独厮守ぢ 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

    There is also a PECL extension for xdiff:

    • http://php.net/manual/en/book.xdiff.php
    • http://pecl.php.net/package/xdiff

    In particular:

    • xdiff_string_diff — Make unified diff of two strings

    Example from PHP Manual:

提交回复
热议问题