Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php function foo() { if ($foo) { return $bar; } elseif (bar()) { ..
Decoded Output download
<?php
function foo() {
if ($foo) {
return $bar;
} elseif (bar()) {
baz();
} elseif (bar2()) {
baz2();
} else {
baz3();
}
return null;
} ?>
Did this file decode correctly?
Original Code
<?php
function foo() {
if ($foo) {
return $bar;
} elseif (bar()) {
baz();
} elseif (bar2()) {
baz2();
} else {
baz3();
}
return null;
}
Function Calls
None |
Stats
MD5 | fc93353c1290440208af069524e5e0ce |
Eval Count | 0 |
Decode Time | 113 ms |