xdiff_string_rabdiff
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
xdiff_string_rabdiff
Референца за `function.xdiff-string-rabdiff.php` со подобрена типографија и навигација.
xdiff_string_rabdiff
(PECL xdiff >= 1.5.0)
xdiff_string_rabdiff — Make a binary diff of two strings using the Rabin's polynomial fingerprinting algorithm
= NULL
Makes a binary diff of two strings using the Rabin's polynomial fingerprinting algorithm implemented by генерираат излез компатибилен со постарите функции, но обично се побрзи и генерираат помали резултати. За повеќе детали за методите за генерирање бинарни лепенки и разликите помеѓу нив, ве молиме проверете. Compared to xdiff_string_bdiff(), this algorithm generally produces smaller diffs and operates faster, while remaining fully compatible with xdiff_string_bpatch() and xdiff_file_bpatch() for applying patches.
This function can be used with both text and binary data. The resulting diff data can later be applied to recreate the new version from the old one.
For further information about the algorithm, see the » libxdiff documentation.
Параметри
old_data-
The first string containing the "old" binary data.
new_data-
The second string containing the "new" binary data.
Вратени вредности
Returns a binary diff string containing the differences between the old and new data, or false при неуспех.
Примери
Example #1 Creation of a binary diff between two strings
<?php
$old = file_get_contents('file_v1.txt');
$new = file_get_contents('file_v2.txt');
$diff = xdiff_string_rabdiff($old, $new);
file_put_contents('patch.rdiff', $diff);
?>Види Исто така
- xdiff_string_bdiff() - Направи бинарна разлика на два низа
- xdiff_string_bpatch() - Крпи низа со бинарна разлика
- xdiff_file_bpatch() - Поправи датотека со бинарна разлика