The XMLDiff\File class

(PECL xmldiff >= 0.8.0)

Введение

Обзор классов

XMLDiff\File extends XMLDiff\Base {
/* Методы */
public string diff ( string $from , string $to )
public string merge ( string $src , string $diff )
/* Наследуемые методы */
public XMLDiff\Base::__construct ( string $nsname )
abstract public mixed XMLDiff\Base::diff ( mixed $from , mixed $to )
abstract public mixed XMLDiff\Base::merge ( mixed $src , mixed $diff )
}

Содержание

Коментарии

The following snippet will show the use case of XMLDiff\File.

<?php
$dxml
=new XMLDiff\File;
$diff $dxml->diff("file1.xml""file2.xml");
$difffile 'difference.xml';
file_put_contents($difffile$diff);
?>
2015-11-21 10:45:04
http://php5.kiev.ua/manual/ru/class.xmldiff-file.html

    Поддержать сайт на родительском проекте КГБ