PHP Source Code Obfuscator 2006Jan22 review

Download
by rbytes.net on

PHP Source Code Obfuscator is a small script designed to make source code unreadable. It searches source code for variables and re

License: GPL (GNU General Public License)
File size: 3K
Developer: Mirko Kaiser
0 stars award from rbytes.net

PHP Source Code Obfuscator is a small script designed to make source code unreadable.

It searches source code for variables and replaces them with less readable replacements. PHP Source Code Obfuscator is also capable of removing newline characters.

Bugs:

- If you try to replace the variable $Variable, these two will be replaced as well $Variable_123 $Variable_234. The first one becomes $sdfgsdjfg_123 and the second one $sdfgsdjfg_234
- This is all-night code, needs clean up. ;)

Notes:

The newest version of this program can be found at http://www.network-technologies.org

Please send me your improvements to the program so that I may include them for other's to benefit.

$user = "spam";
$domain = "network-technologies.org";
$email = "$user@$domain";

This program works in two steps for now, the first step removed n and saves the file, the second step replaces variables and overwrites the step1 file.

- Make sure that you have no # in your file and only use $ for variables! Use html characters if you need to display these characters in html. http://www.w3.org/MarkUp/html-spec/html-spec_13.html
- Does not support Heredoc syntax "echo

PHP Source Code Obfuscator 2006Jan22 keywords