My question is how to encode php codes but I am not looking for a site to do it ( or a program ) . I am asking how to encode manually ? I mean how to change out codes into an unknown string so others may not understand what our codes are .
Asked
Active
Viewed 50 times
-2
-
2That is commonly called "encryption". Knowing that, use Google. – Jongware Dec 30 '13 at 10:03
-
2Or maybe you are talking about 'obfuscating', what means make the source code unreadable for humans. – idmean Dec 30 '13 at 10:11
1 Answers
0
If you're looking for a compiler to compile your PHP code into byte code and add some obfuscation so that others cannot gain access to your code. Here are a few:
- http://www.phpcompiler.org/
- http://www.php-compiler.net/
- https://github.com/facebook/hiphop-php/ - This one is launched by Facebook
- http://www.bambalam.se/bamcompile/
- http://sourceforge.net/projects/binaryphp/
- http://www.roadsend.com/home/index.php?pageID=compiler
Some (if not all) of these compilers have features to obfuscate your code.
More at Can you "compile" PHP code?

Community
- 1
- 1

Joshua Kissoon
- 3,269
- 6
- 32
- 58