Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know of the Text_Diff PEAR package, but is there anything more robust? I'm looking to take diffs of strings with HTML tags in them, and I'd like to know the locations of all the differences including the tags.

share|improve this question
1  
In what way is Text_Diff not robust enough for your needs? – Anon. Jan 19 '10 at 0:26
I'm currently using Text_Diff on HTML (and have been for 2 years now) to drive an HTML-based wiki application. It's not ideal, but it's sufficient for my purposes. – Frank Farmer Jan 19 '10 at 0:55

closed as not constructive by Smi, hjpotter92, Jay Gilford, cryptic ツ, Ocramius Mar 13 at 2:15

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 2 down vote accepted

The PEAR Text_Diff package is the most complete I know, however if that doesn't fit your needs you can try PHPDiff or the really simple simplediff from Paul Butler.

BTW, this has been discussed here before.

share|improve this answer

What do you mean "for PHP?" ?

Diffs aren't language dependent. I use a diff plugin for my Text Editor (Vim).

share|improve this answer
2  
If you're building, say, a PHP wiki, you need a way to do diffs in PHP itself. – Frank Farmer Jan 19 '10 at 0:55
well then his question should be better formulated. – Luca Matteis Jan 19 '10 at 10:26

Not the answer you're looking for? Browse other questions tagged or ask your own question.