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 #64354 (Unserialize array of objects whose class can't be autoloaded fail) --..

Decoded Output download

--TEST--
Bug #64354 (Unserialize array of objects whose class can't be autoloaded fail)
--FILE--
<?php
spl_autoload_register(
    function($class) {
        throw new Exception("Failed");
    }
);

try {
    var_dump(unserialize('O:1:"A":0:{}'));
} catch (Exception $e) {
    var_dump($e->getMessage());
}

try {
    var_dump(unserialize('a:2:{i:0;O:1:"A":0:{}i:1;O:1:"A":0:{}}'));
} catch (Exception $e) {
    var_dump($e->getMessage());
}
?>
--EXPECT--
string(6) "Failed"
string(6) "Failed"

Did this file decode correctly?

Original Code

--TEST--
Bug #64354 (Unserialize array of objects whose class can't be autoloaded fail)
--FILE--
<?php
spl_autoload_register(
    function($class) {
        throw new Exception("Failed");
    }
);

try {
    var_dump(unserialize('O:1:"A":0:{}'));
} catch (Exception $e) {
    var_dump($e->getMessage());
}

try {
    var_dump(unserialize('a:2:{i:0;O:1:"A":0:{}i:1;O:1:"A":0:{}}'));
} catch (Exception $e) {
    var_dump($e->getMessage());
}
?>
--EXPECT--
string(6) "Failed"
string(6) "Failed"

Function Calls

None

Variables

None

Stats

MD5 ada53204f4c02d0044a091501c435ef0
Eval Count 0
Decode Time 106 ms