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-- SPL: ArrayObject/Iterator from IteratorAggregate --FILE-- <?php // This test als..

Decoded Output download

--TEST--
SPL: ArrayObject/Iterator from IteratorAggregate
--FILE--
<?php

// This test also needs to exclude the protected and private variables
// since they cannot be accessed from the external object which iterates
// them.

class test implements IteratorAggregate
{
    public    $pub = "public";
    protected $pro = "protected";
    private   $pri = "private";

    function __construct()
    {
        $this->imp = "implicit";
    }

    function getIterator(): Traversable
    {
        $it = new ArrayObject($this);
        return $it->getIterator();
    }
};

$test = new test;
$test->dyn = "dynamic";

print_r($test);

print_r($test->getIterator());

foreach($test as $key => $val)
{
    echo "$key => $val
";
}

?>
--EXPECT--
test Object
(
    [pub] => public
    [pro:protected] => protected
    [pri:test:private] => private
    [imp] => implicit
    [dyn] => dynamic
)
ArrayIterator Object
(
    [storage:ArrayIterator:private] => ArrayObject Object
        (
            [storage:ArrayObject:private] => test Object
                (
                    [pub] => public
                    [pro:protected] => protected
                    [pri:test:private] => private
                    [imp] => implicit
                    [dyn] => dynamic
                )

        )

)
pub => public
imp => implicit
dyn => dynamic

Did this file decode correctly?

Original Code

--TEST--
SPL: ArrayObject/Iterator from IteratorAggregate
--FILE--
<?php

// This test also needs to exclude the protected and private variables
// since they cannot be accessed from the external object which iterates
// them.

class test implements IteratorAggregate
{
    public    $pub = "public";
    protected $pro = "protected";
    private   $pri = "private";

    function __construct()
    {
        $this->imp = "implicit";
    }

    function getIterator(): Traversable
    {
        $it = new ArrayObject($this);
        return $it->getIterator();
    }
};

$test = new test;
$test->dyn = "dynamic";

print_r($test);

print_r($test->getIterator());

foreach($test as $key => $val)
{
    echo "$key => $val\n";
}

?>
--EXPECT--
test Object
(
    [pub] => public
    [pro:protected] => protected
    [pri:test:private] => private
    [imp] => implicit
    [dyn] => dynamic
)
ArrayIterator Object
(
    [storage:ArrayIterator:private] => ArrayObject Object
        (
            [storage:ArrayObject:private] => test Object
                (
                    [pub] => public
                    [pro:protected] => protected
                    [pri:test:private] => private
                    [imp] => implicit
                    [dyn] => dynamic
                )

        )

)
pub => public
imp => implicit
dyn => dynamic

Function Calls

None

Variables

None

Stats

MD5 c86482211968c527e82e6300f8205681
Eval Count 0
Decode Time 75 ms