Php/docs/function.xdiff-string-rabdiff

来自菜鸟教程
跳转至:导航、​搜索

xdiff_string_rabdiff

(PECL xdiff >= 1.5.0)

xdiff_string_rabdiffMake binary diff of two strings using the Rabin's polynomial fingerprinting algorithm


说明

xdiff_string_bdiff ( string $old_data , string $new_data ) : string

Makes a binary diff of two strings and returns the result. The difference between this function and xdiff_string_bdiff() is different algorithm used which should result in faster execution and smaller diff produced. This function works with both text and binary data. Resulting patch can be later applied using xdiff_string_bpatch()/xdiff_file_bpatch().

For more details about differences between algorithm used please check » libxdiff website.


参数

old_data
First string with binary data. It acts as "old" data.
new_data
Second string with binary data. It acts as "new" data.


返回值

Returns string with binary diff containing differences between "old" and "new" data or false if an internal error occurred.


参见