Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- Bug #39542 (Behaviour of require_once/include_once different to < 5.2.0) --INI-- ..

Decoded Output download

--TEST--
Bug #39542 (Behaviour of require_once/include_once different to < 5.2.0)
--INI--
error_log=
--FILE--
<?php
$oldcwd = getcwd();
chdir(__DIR__);
if (substr(PHP_OS, 0, 3) == 'WIN') {
    set_include_path(__DIR__.'/bug39542;.');
} else {
    set_include_path(__DIR__.'/bug39542:.');
}

spl_autoload_register(function ($class) {
    if (!require_once($class.'.inc')) {
        error_log('Error: Autoload class: '.$class.' not found!');
    }
});

new bug39542();

chdir($oldcwd);
?>
--EXPECT--
ok

Did this file decode correctly?

Original Code

--TEST--
Bug #39542 (Behaviour of require_once/include_once different to < 5.2.0)
--INI--
error_log=
--FILE--
<?php
$oldcwd = getcwd();
chdir(__DIR__);
if (substr(PHP_OS, 0, 3) == 'WIN') {
    set_include_path(__DIR__.'/bug39542;.');
} else {
    set_include_path(__DIR__.'/bug39542:.');
}

spl_autoload_register(function ($class) {
    if (!require_once($class.'.inc')) {
        error_log('Error: Autoload class: '.$class.' not found!');
    }
});

new bug39542();

chdir($oldcwd);
?>
--EXPECT--
ok

Function Calls

getcwd 1

Variables

None

Stats

MD5 c459e18a567fdde8f23ca221a55191ec
Eval Count 0
Decode Time 121 ms