回答:
PHP Horde_Text_Diffパッケージを使用することができました。
ただし、このパッケージは使用できなくなりました。
ある文字列を別の文字列に変換するための編集(文字どおりに解釈されるべきではない)の最小数を計算するクラスを記述しただけです。
http://www.raymondhill.net/finediff/
HTMLバージョンのdiffをレンダリングする静的関数があります。
これは最初のバージョンであり、改善される可能性がありますが、現時点では問題なく機能しているので、誰かが必要なようにコンパクトなdiffを効率的に生成する必要がある場合に備えて、それを捨てます。
編集:現在Githubにあります:https : //github.com/gorhill/PHP-FineDiff
これは素晴らしいものです 。http://paulbutler.org/archives/a-simple-diff-algorithm-in-php/
問題を解決することは見かけほど簡単ではなく、問題が理解するまでに約1年間問題が発生しました。私はなんとかアルゴリズムをPHPで18行のコードで記述しました。diffを実行する最も効率的な方法ではありませんが、おそらく理解するのが最も簡単です。
これは、両方の文字列に共通する単語の最長シーケンスを見つけ、部分文字列に共通の単語がなくなるまで、残りの文字列の最長シーケンスを再帰的に見つけることによって機能します。この時点で、残りの新しい単語が挿入として、残りの古い単語が削除として追加されます。
ここからソースをダウンロードできます:PHP SimpleDiff ...
if($matrix[$oindex][$nindex] > $maxlen){
Undefined variable: maxlen
2つの配列を比較するために使用できる短い関数を次に示します。LCSアルゴリズムを実装します。
function computeDiff($from, $to)
{
$diffValues = array();
$diffMask = array();
$dm = array();
$n1 = count($from);
$n2 = count($to);
for ($j = -1; $j < $n2; $j++) $dm[-1][$j] = 0;
for ($i = -1; $i < $n1; $i++) $dm[$i][-1] = 0;
for ($i = 0; $i < $n1; $i++)
{
for ($j = 0; $j < $n2; $j++)
{
if ($from[$i] == $to[$j])
{
$ad = $dm[$i - 1][$j - 1];
$dm[$i][$j] = $ad + 1;
}
else
{
$a1 = $dm[$i - 1][$j];
$a2 = $dm[$i][$j - 1];
$dm[$i][$j] = max($a1, $a2);
}
}
}
$i = $n1 - 1;
$j = $n2 - 1;
while (($i > -1) || ($j > -1))
{
if ($j > -1)
{
if ($dm[$i][$j - 1] == $dm[$i][$j])
{
$diffValues[] = $to[$j];
$diffMask[] = 1;
$j--;
continue;
}
}
if ($i > -1)
{
if ($dm[$i - 1][$j] == $dm[$i][$j])
{
$diffValues[] = $from[$i];
$diffMask[] = -1;
$i--;
continue;
}
}
{
$diffValues[] = $from[$i];
$diffMask[] = 0;
$i--;
$j--;
}
}
$diffValues = array_reverse($diffValues);
$diffMask = array_reverse($diffMask);
return array('values' => $diffValues, 'mask' => $diffMask);
}
2つの配列が生成されます。
配列に文字を入力すると、インライン差分の計算に使用できます。違いを強調するための単一のステップ:
function diffline($line1, $line2)
{
$diff = computeDiff(str_split($line1), str_split($line2));
$diffval = $diff['values'];
$diffmask = $diff['mask'];
$n = count($diffval);
$pmc = 0;
$result = '';
for ($i = 0; $i < $n; $i++)
{
$mc = $diffmask[$i];
if ($mc != $pmc)
{
switch ($pmc)
{
case -1: $result .= '</del>'; break;
case 1: $result .= '</ins>'; break;
}
switch ($mc)
{
case -1: $result .= '<del>'; break;
case 1: $result .= '<ins>'; break;
}
}
$result .= $diffval[$i];
$pmc = $mc;
}
switch ($pmc)
{
case -1: $result .= '</del>'; break;
case 1: $result .= '</ins>'; break;
}
return $result;
}
例えば。:
echo diffline('StackOverflow', 'ServerFault')
出力されます:
S<del>tackO</del><ins>er</ins>ver<del>f</del><ins>Fau</ins>l<del>ow</del><ins>t</ins>
SタックO曲がるfファウルわーt
その他の注意事項:
computeDiff is not found
xdiff用のPECL拡張機能もあります。
特に:
PHPマニュアルの例:
<?php
$old_article = file_get_contents('./old_article.txt');
$new_article = $_POST['article'];
$diff = xdiff_string_diff($old_article, $new_article, 1);
if (is_string($diff)) {
echo "Differences between two articles:\n";
echo $diff;
}
表示されたPEARベースの方法とより単純な方法の両方で私はひどい問題を抱えていました。そこで、Unixのdiffコマンドを利用するソリューションを次に示します(明らかに、Unixシステムを使用しているか、機能するWindowsのdiffコマンドが必要です)。お気に入りの一時ディレクトリーを選択し、必要に応じて例外を戻りコードに変更します。
/**
* @brief Find the difference between two strings, lines assumed to be separated by "\n|
* @param $new string The new string
* @param $old string The old string
* @return string Human-readable output as produced by the Unix diff command,
* or "No changes" if the strings are the same.
* @throws Exception
*/
public static function diff($new, $old) {
$tempdir = '/var/somewhere/tmp'; // Your favourite temporary directory
$oldfile = tempnam($tempdir,'OLD');
$newfile = tempnam($tempdir,'NEW');
if (!@file_put_contents($oldfile,$old)) {
throw new Exception('diff failed to write temporary file: ' .
print_r(error_get_last(),true));
}
if (!@file_put_contents($newfile,$new)) {
throw new Exception('diff failed to write temporary file: ' .
print_r(error_get_last(),true));
}
$answer = array();
$cmd = "diff $newfile $oldfile";
exec($cmd, $answer, $retcode);
unlink($newfile);
unlink($oldfile);
if ($retcode != 1) {
throw new Exception('diff failed with return code ' . $retcode);
}
if (empty($answer)) {
return 'No changes';
} else {
return implode("\n", $answer);
}
}
これは私が見つけた中で最高のものです。
$sequence1 = $string1; $sequence2 = $string2; $end1 = strlen($string1) - 1; $end2 = strlen($string2) - 1;
してください$sequence1 = preg_split('//u', $string1, -1, PREG_SPLIT_NO_EMPTY); $sequence2 = preg_split('//u', $string2, -1, PREG_SPLIT_NO_EMPTY); $end1 = count($sequence1) - 1; $end2 = count($sequence2) - 1;
あなたが探しているのは「diffアルゴリズム」です。簡単なグーグル検索は私にこの解決策を導きました。私はそれをテストしませんでした、しかし多分それはあなたが必要とすることをするでしょう。
Neil FrasersのPHP移植版diff_match_patch(Apache 2.0ライセンス)
PHPコアからこれらの素晴らしい関数を確認することをお勧めします。
Similar_text — 2つの文字列間の類似性を計算する
http://www.php.net/manual/en/function.similar-text.php
levenshtein — 2つの文字列間のレーベンシュタイン距離を計算する
http://www.php.net/manual/en/function.levenshtein.php
soundex —文字列のsoundexキーを計算する
http://www.php.net/manual/en/function.soundex.php
metaphone —文字列のmetaphoneキーを計算する
私は、Python difflibに基づいたChris BoultonによるこのPHP diffクラスに出会いました。
別の解決策(統合されたビューとは対照的に並べて比較):https : //github.com/danmysak/side-by-side。