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 define('APP_ROOT', dirname(__dir__) . '/application'); $path = ''; if (isset($_SERV..
Decoded Output download
<?php
define('APP_ROOT', dirname(__dir__) . '/application');
$path = '';
if (isset($_SERVER['argv'][1])) {
$path = $_SERVER['argv'][1];
} else {
exit('This script is run as CLI with no path?');
}
$app = \Gene\Application::getInstance();
$app
->autoload(APP_ROOT)
->load("router.ini.php")
->load("config.ini.php")
->setMode(1, 1)
->run('get', $path);
?>
Did this file decode correctly?
Original Code
<?php
define('APP_ROOT', dirname(__dir__) . '/application');
$path = '';
if (isset($_SERVER['argv'][1])) {
$path = $_SERVER['argv'][1];
} else {
exit('This script is run as CLI with no path?');
}
$app = \Gene\Application::getInstance();
$app
->autoload(APP_ROOT)
->load("router.ini.php")
->load("config.ini.php")
->setMode(1, 1)
->run('get', $path);
Function Calls
None |
Stats
MD5 | 919519fa32bc3e6404483cd8c30c38cc |
Eval Count | 0 |
Decode Time | 608 ms |