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-- Iterating an uninitialized RecursiveIteratorIterator --FILE-- <?php $rc = new Re..

Decoded Output download

--TEST--
Iterating an uninitialized RecursiveIteratorIterator
--FILE--
<?php

$rc = new ReflectionClass(RecursiveIteratorIterator::class);
$it = $rc->newInstanceWithoutConstructor();
try {
    foreach ($it as $v) {}
} catch (Error $e) {
    echo $e->getMessage(), "
";
}

?>
--EXPECT--
Object is not initialized

Did this file decode correctly?

Original Code

--TEST--
Iterating an uninitialized RecursiveIteratorIterator
--FILE--
<?php

$rc = new ReflectionClass(RecursiveIteratorIterator::class);
$it = $rc->newInstanceWithoutConstructor();
try {
    foreach ($it as $v) {}
} catch (Error $e) {
    echo $e->getMessage(), "\n";
}

?>
--EXPECT--
Object is not initialized

Function Calls

None

Variables

None

Stats

MD5 437cd92b0214872612295fac6b080b07
Eval Count 0
Decode Time 94 ms