1

Which is the best way to convert the PHP code to not human readble format?

svk
  • 4,513
  • 18
  • 63
  • 100
  • possible duplicate of [PHP- Best Obfuscation Tool/Script?](http://stackoverflow.com/questions/3777229/php-best-obfuscation-tool-script) – Gordon Sep 23 '10 at 11:01

4 Answers4

1

Take a look at Zend Guard.

fire
  • 21,383
  • 17
  • 79
  • 114
1

This is definitely a duplicate of PHP- Best Obfuscation Tool/Script? however nobody there mentioned hiphop.

Community
  • 1
  • 1
symcbean
  • 47,736
  • 6
  • 59
  • 94
  • hiphop is a PHP compiler; it's main purpose is to speed up the code. The fact that it becomes unreadable as a compiled executable is a bonus. – Spudley Sep 23 '10 at 11:28
  • 1
    No one mentioned hiphop for a reason. – o0'. Sep 23 '10 at 11:33
0

You can see bcompiler with a stable release: http://pecl.php.net/package/bcompiler

Jonadabe
  • 74
  • 7
0

You can also try using the Ioncube Encryption, but you will need to ask your server administrator to install the Ioncube library / package, if it's not already installed.

Hope it helps.

Knowledge Craving
  • 7,955
  • 13
  • 49
  • 92