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 $foobar = $_GET['foobar']; $dyn_func = create_function('$foobar', "echo $foo..
Decoded Output download
<?php
$foobar = $_GET['foobar'];
$dyn_func = create_function('$foobar', "echo $foobar;");
$dyn_func('');
?>
Did this file decode correctly?
Original Code
<?php
$foobar = $_GET['foobar'];
$dyn_func = create_function('$foobar', "echo $foobar;");
$dyn_func('');
?>
Function Calls
create_function | 1 |
Stats
MD5 | 39ab1b708fc70cee095f33b94a4f66ac |
Eval Count | 1 |
Decode Time | 101 ms |