Reputation: 41865
I am interested in usging the library google-diff-match-patch with PHP. Unfortunately it is not available in this language. It is available "only" in Java, JavaScript, Dart, C++, C#, Objective C, Lua and Python.
So is there a tool to automatically convert one of those language into PHP ? Do you have other suggestions how I could use this library with PHP. I would like to avoid calling it via exec()
to make the installation of my program simpler.
Upvotes: 0
Views: 477
Reputation: 119
Yes, it's possible to convert Java to PHP, but it does still require some manual intervention. See here: http://javatophp.com
Upvotes: 0
Reputation: 197682
Automatic conversion? Will that ever work? Here is a PHP port: diff_match_patch-php.
Upvotes: 3