What is the "Maximum" obfuscation mode?
Maximum mode combines both techniques: first it applies goto-based structural shuffling and hex/octal string encoding, then encodes the entire result as Base64 and wraps it in eval(). This is the strongest protection available in this tool.
Does this tool work with all PHP versions?
The goto-based obfuscation is compatible with PHP 5.3 and above. The Base64 eval mode works on all PHP versions that support eval() and base64_decode(), which includes PHP 5, 7, and 8.
Is my PHP code safe when using this tool?
Absolutely. All obfuscation is performed locally inside your browser using JavaScript. Your source code is never transmitted to our servers, stored, or logged. You can safely use this tool with proprietary and commercial PHP code.
Can I obfuscate PHP files with includes and classes?
Yes, you can obfuscate individual PHP files containing classes, functions, and logic. For files with includes or requires, obfuscate each file separately to preserve file structure and paths correctly.