php-diff icon indicating copy to clipboard operation
php-diff copied to clipboard

A comprehensive library for generating differences between two strings in multiple formats (unified, side by side HTML etc). Based on the difflib implementation in Python

Results 38 php-diff issues
Sort by recently updated
recently updated
newest added

dear chris, i finally jumped.. on using GIT ;-) so here are my changes. Besides the custom titles change, and that one typo, i found the bug with the non...

You can pass an array of options to the main renderer that will let you customize the "old" and "new" labels to fit your needs. It is just a display...

file: SequenceMatcher.php line num: 634 $bLength = count ($b); => $bLength = count ($this->b); line num: 732 if(count($a) == $count($b)) { => if(count($a) == count($b)) {

I have changed the $toLine placement from the left to the right in inline.php on line number 131. From: ``` php foreach($change['changed']['lines'] as $no => $line) { $toLine = $change['changed']['offset']...

Does this project receive any updates ? First of all, I discovered a small bug. After cloning, i viewed /php-diff/example/example.php in the browser and under the Old column of Inline...

When i make a diff between: OLD Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since...

When i make diff between: OLD aaa bbb NEW aaa bbb there is a space in 'NEW' version in empty line. Those space is not highlighted, it could be inside...