PHP Revisions Library (like StackOverflow)

110 views Asked by At

Is there a PHP library out there that can do something like this for me?

https://stackoverflow.com/posts/20353734/revisions

I'm looking to implement revisions where users can see what was added, changed and removed in posts.

1

There are 1 answers

0
Teaqu On

My Favorite: FineDiff (demo)

It allows you to specify the granularity up to character-level and is faster than Text_Diff.

More: Highlight the difference between two strings in PHP