Horde_Text_Diff字符串比较库仅比较字符串的第一个字符

时间:2013-08-08 00:29:38

标签: text diff horde

我正在使用Horde_Text_Diff计算两个字符串之间的差异。示例代码如下:

$check_diff = new Horde_Text_Diff( 'auto', array('asdf','asd11') );

$renderer = new Horde_Text_Diff_Renderer_Inline();
echo $renderer->render($check_diff);

这没有回音。正确的行为是在角色4处显示差异。

如果我将比较数组从数组('asdf','asd11')更改为例如array('asdf','12345'),那么它将输出 a1 。换句话说,它似乎只是比较第一个字符。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

当我尝试这个时,我收到两个警告:

PHP Warning:  array_walk() expects parameter 1 to be array, string given in /usr/share/php/Horde/Text/Diff/Engine/Native.php on line 33
PHP Warning:  array_walk() expects parameter 1 to be array, string given in /usr/share/php/Horde/Text/Diff/Engine/Native.php on line 34

即,某些东西正在获得它需要数组的字符串。

那是因为,不是将(包含两个字符串的数组)传递给Horde_Text_Diff(),而应传递(包含数组)两个字符串数组(其中每个字符串代表一行文本)。

如果您当前尝试传入的实际字符串包含多行文本,则可以使用explode()将它们拆分为字符串数组,例如:

$a = "foo\nbar\nbaz";
$b = "foo\nqux\nbaz";
$a_lines = explode("\n", $a);
$b_lines = explode("\n", $b);

$check_diff = new Horde_Text_Diff( 'auto', array($a_lines, $b_lines) );
$renderer = new Horde_Text_Diff_Renderer_Inline();
echo $renderer->render($check_diff);

输出:

foo
<del>bar</del><ins>qux</ins>
baz