How is this PHP encoded?

后端 未结 3 1809
暗喜
暗喜 2021-01-17 05:10

Does anybody know how this PHP code is encoded? I don\'t know whether it\'s Zend, ionCube or something else.



        
3条回答
  •  暖寄归人
    2021-01-17 05:31

    My guess is that this code uses Obfuscation.
    To obfuscate a code is to transform its source to a virtually unreadable analog. It's exactly the same functionality, but variable and function names are changed in a way which would make it very hard to read.

    It's a usual practice used for code which can be disassembled (like .NET or any interpreted language like PHP, Ruby, Perl), to protect it as an intellectual property.

    Check this question for details: Is there a code obfuscator for PHP?

提交回复
热议问题