Calculate text diffs in PHP

diff, php

Solution

What sort of diffs? File diffs? There is array_diff() which acts on arrays. Then there is also xdiff, which "enables you to create and apply patch files containing differences between different revisions of files.". The latter acts on files or strings.

Edit: I should add xdiff doesn't appear to be out in a release yet. You have to build from source to use it.

Problem

Are there any libraries (3rd party or built-in) in `PHP` to calculate text diffs?

Original source

Related problems