当我尝试这个时,我收到两个警告:
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