If I create an application in java I compile it and it's hard to steal the code even if I send you the application. I know you can do it with reverse engineering and such but anyways.
If I create an application in PHP and put it on a clients server the client could copy paste the code if he or she wanted.
So my question is. Is there any convenient way to compile or somehow protect your PHP code from others even if it runs on their servers?
You could use IonCube to encode your files if you can afford it.
On the other hand, you could use APC to cache the bytecode and then set APC variable
apc.stat
to 0 and then remove your php files from the server. That way APC will always look in the cache without verifying that actual php files have changed.You could also use HipHop to compile your code, but it's tricky to set up and more than often it doesn't compile without errors.