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 set_include_path(get_include_path().PATH_SEPARATOR.dirname(__DIR__).'/Source'); sp..
Decoded Output download
<?php
set_include_path(get_include_path().PATH_SEPARATOR.dirname(__DIR__).'/Source');
spl_autoload_register(function($class) {
@require_once str_replace(array('\', '_'), '/', $class) . '.php';
});
if ( file_exists(__DIR__.'/FTPConfig.php') === true )
{
require_once __DIR__.'/FTPConfig.php';
}
require_once __DIR__.'/FTPMessageObserver.php';
require_once __DIR__.'/TestCase.php';
?>
Did this file decode correctly?
Original Code
<?php
set_include_path(get_include_path().PATH_SEPARATOR.dirname(__DIR__).'/Source');
spl_autoload_register(function($class) {
@require_once str_replace(array('\\', '_'), '/', $class) . '.php';
});
if ( file_exists(__DIR__.'/FTPConfig.php') === true )
{
require_once __DIR__.'/FTPConfig.php';
}
require_once __DIR__.'/FTPMessageObserver.php';
require_once __DIR__.'/TestCase.php';
Function Calls
get_include_path | 1 |
Stats
MD5 | 7d2b63b531229a28332c4be3fc4d6bdc |
Eval Count | 0 |
Decode Time | 81 ms |