Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
$A = 5; echo teste($A); function teste ($X) { if ($X == 0) return 1; return ($X + 2) ..
Decoded Output download
<? $A = 5;
echo teste($A);
function teste ($X) {
if ($X == 0)
return 1;
return ($X + 2) * teste ($X - 1) - 1;
} ?>
Did this file decode correctly?
Original Code
$A = 5;
echo teste($A);
function teste ($X) {
if ($X == 0)
return 1;
return ($X + 2) * teste ($X - 1) - 1;
}
Function Calls
teste | 1 |
Stats
MD5 | 9b2e27b072283fd5f5a274524b79b69b |
Eval Count | 0 |
Decode Time | 83 ms |