up vote 0 down vote favorite
share [g+] share [fb]

Say, I have var1 and var2 both with a string value. Var2 is a revision of var1 with minor changes: var1:

Hello, world1

var2:

Bye bye, world!

Now I want this output:

<span class="removed">Hello</span> <span class="new">Bye bye</span>, world<span class="removed">1</span><span class="new">!</span>

much like SO's way. How can I do this in php?

Thanks

link|improve this question

74% accept rate
feedback

2 Answers

up vote 2 down vote accepted

I would suggest you take a look at Text_Diff on PEAR.

link|improve this answer
It says 404 – WTP'-- Aug 19 '09 at 21:31
Seems to be a bad link, try pear.php.net/package/Text_Diff – Cal Jacobson Aug 19 '09 at 21:31
1  
Fixed....seems like the "a href" syntax works, but the other syntaxes encode the underscore. – JW. Aug 19 '09 at 21:32
I'll take a look at it. – WTP'-- Aug 19 '09 at 21:40
feedback

Longest common subsequence problem. Once I found nice implementation in Python and translated it into PHP (because PHP arrays are quite memory expensive I had to sacrifice speed by using string to hold LCS matrix).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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