Protecting PHP code - obfuscation?

agusgriego

Partially Insane
Hi... are there any tools (freeware if possible) that could help protecting my PHP code by obfuscating it or by other means?

Thannx in advance,
 
Who's going to see your php code anyway? are you releasing it as a product, or just running it on a web server?
 
I'm not selling a product. The thing is that I want complex websites I create (and upload to the client's FTP) not to be available to other person who want to modify or steal the code.

This is, i want al the classes i have programmed in PHP to be protected so if anyone comes after me, they can't copy them or modify them.

Thanks,
 
only downside to zend is, you have to install extra software at the client's site. I don't think you do have to do that with bcompiler - it just compiles the php to regular php bytecode, executable by an unmodified php interpreter, but not easily readable by humans
 
Thanks for all the answers, I think bcompiler is the choice since I don't develop huge complex website costing millions... I only want to protect the code...

Thanks again,
 
Back
Top