我有PHP 4代碼來檢查兩個文件的差異,這在PHP 4版本的舊服務器上正常工作,但在新服務器上出現錯誤。例如:PHP 4代碼給錯誤php 5
$maxlen
是沒有定義的
而且功能不工作新的服務器上。任何人都知道如何改變這個最近的PHP版本?
function diff($old, $new){
foreach($old as $oindex => $ovalue){
$nkeys = array_keys($new, $ovalue);
foreach($nkeys as $nindex){
$matrix[$oindex][$nindex] = isset($matrix[$oindex - 1][$nindex - 1]) ?
$matrix[$oindex - 1][$nindex - 1] + 1 : 1;
if($matrix[$oindex][$nindex] > $maxlen){
$maxlen = $matrix[$oindex][$nindex];
$omax = $oindex + 1 - $maxlen;
$nmax = $nindex + 1 - $maxlen;
}
}
}
if($maxlen == 0) return array(array('d'=>$old, 'i'=>$new));
return array_merge(
diff(array_slice($old, 0, $omax), array_slice($new, 0, $nmax)),
array_slice($new, $nmax, $maxlen),
diff(array_slice($old, $omax + $maxlen), array_slice($new, $nmax + $maxlen)));
}
function htmlDiff($old, $new){
$preg="/[\s,]+/";
$old=str_replace(">","> ",$old);
$new=str_replace(">","> ",$new);
$old=str_replace("<"," <",$old);
$new=str_replace("<"," <",$new);
$diff = diff(preg_split($preg, $old),preg_split($preg, $new));
foreach($diff as $k){
if(is_array($k))
$ret .= (!empty($k['d'])?"<div style='BACKGROUND-COLOR: red'>".implode(' ',$k['d'])."</div> ":'').
(!empty($k['i'])?"<div style='BACKGROUND-COLOR: yellow'>".implode(' ',$k['i'])."</div> ":'');
else $ret .= $k . ' ';
}
return $ret;
}
function creatediff($oldurl,$newurl,$diffurl){
$sold= file_get_contents($oldurl);
$snew= file_get_contents($newurl);
$diff=htmlDiff($sold,$snew);
$diff=preg_replace('#(href|src)="([^:"]*)("|(?:(?:%20|\s|\+)[^"]*"))#','$1="'.$newurl.'/$2"',$diff);
file_put_contents($diffurl,$diff);
}
試過手冊? http://php.net/manual/en/faq.migration5.php – Repox 2013-03-06 18:13:56
http://stackoverflow.com/questions/2487021/what-is-the-difference-betwen-variable-in-php4-and-php5 – apoq 2013-03-06 18:14:39
你從哪裏得到'$ maxlen'? – codingbiz 2013-03-06 18:14:41