Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

if(!function_exists("rotencode")){function rotencode($string,$amount) { $key = substr($str..

Decoded Output download

<?  if(!function_exists("rotencode")){function rotencode($string,$amount) { $key = substr($string, 0, 1); if(strlen($string)==1) { return chr(ord($key) + $amount); } else { return chr(ord($key) + $amount) . rotEncode(substr($string, 1, strlen($string)-1), $amount); }}} ?>

Did this file decode correctly?

Original Code

if(!function_exists("rotencode")){function rotencode($string,$amount) { $key = substr($string, 0, 1); if(strlen($string)==1) { return chr(ord($key) + $amount); } else { return chr(ord($key) + $amount) . rotEncode(substr($string, 1, strlen($string)-1), $amount); }}}

Function Calls

function_exists 1

Variables

None

Stats

MD5 908b2b29fd1485a641cd6de48a064728
Eval Count 0
Decode Time 40 ms