Exemple #1
0
 static function diffAsAnsi($local, $remote, $flags = null)
 {
     $tool = new coopy_Coopy(new coopy_TableIO());
     $tool->cache_txt = "";
     if ($flags === null) {
         $flags = new coopy_CompareFlags();
     }
     $tool->output_format = "csv";
     $tool->runDiff($flags->parent, $local, $remote, $flags, null);
     return $tool->cache_txt;
 }