Giter Site home page Giter Site logo

global-localhost / pecl-text-xdiff Goto Github PK

View Code? Open in Web Editor NEW

This project forked from php/pecl-text-xdiff

0.0 0.0 2.0 73 KB

File differences/patches.

Home Page: http://pecl.php.net/package/xdiff

License: Other

C 67.23% PHP 28.28% M4 3.60% JavaScript 0.71% Roff 0.18%

pecl-text-xdiff's Introduction

This extension requires libxdiff (http://www.xmailserver.org/xdiff-lib.html).

API:

* mixed xdiff_string_diff(string str1, string str2, [int context, [bool minimal]])

Makes unified diff of strings str1 and str2. 'context' indicates how many
lines of context you want to include in diff result. Set 'minimal' to true if
you want to minimalize size of diff (can take a long time).  Returns string
with result or false if an internal error happened.

* bool xdiff_file_diff(string file1, string file2, string dest, [int context, [bool minimal]])

Makes unified diff of files file1 and file2 and stores result in file dest.
'context' indicates how many lines of context you want to include in diff
result. Set 'minimal' to true if you want to minimalize size of diff (can take
a long time).

* mixed xdiff_string_diff_binary(string str1, string str2)

Makes binary diff of strings str1 and str2.  Returns string with result or
false if an internal error happened.

* bool xdiff_file_diff_binary(string file1, string file2, string dest)

Makes binary diff of files file1 and file2 and stores result in file dest.
Returns string with result or false if an internal error happened.

* string xdiff_string_patch(string file, string patch [, int flags, [string error]])

Patches string 'file' with unified patch in 'patch' and returns a patched string.
'flags' can be one of:
XDIFF_PATCH_NORMAL - normal patch (default)
XDIFF_PATCH_REVERSE - reverse patch

If 'error' is passed then error is stored inside this variable (it is passed by reference).

* mixed xdiff_file_patch(string file, string patch, string dest [, int flags])

Patches file 'file' with unified patch in file 'patch'.
'flags' can be one of:
XDIFF_PATCH_NORMAL - normal patch (default)
XDIFF_PATCH_REVERSE - reverse patch

Returns false if an internal error happened, string with rejected chunks of
patch or true if patch was applied successfully.

* string xdiff_string_patch_binary(string str, string patch)

Patches string 'str' with binary patch 'patch'.
Returns patched string or false if an internal error happened.

* bool xdiff_file_patch_binary(string file, string patch, string dest)

Patches file 'file' with binary patch in file 'patch' and stores result in file 'dest'.
Returns true if file was patched successfully, false otherwise.

* string xdiff_string_merge3(string str1, string str2, string str3 [, string error])

Merges strings 'str1', 'str2' and 'str3' into one. Returns merged string or
false if an internal error happened.  If 'error' is passed then error is
stored inside this variable (it is passed by reference).

* mixed xdiff_file_merge3(string file1, string file2, string file3, string dest)

Merges files 'file1', 'file2' and 'file3' into one and stores result in file
'dest'.  Returns true if merge was successful, string with rejected chunks if
it was not or false if an internal error happened.


vim:tw=78:et:

pecl-text-xdiff's People

Contributors

sean-der avatar felipensp avatar helly25 avatar rlerdorf avatar wez avatar weltling avatar tony2001 avatar johannes avatar jparise avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.