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-- Phar::buildFromIterator() iterator, 1 file passed in --EXTENSIONS-- phar --INI-- ..

Decoded Output download

--TEST--
Phar::buildFromIterator() iterator, 1 file passed in
--EXTENSIONS--
phar
--INI--
phar.require_hash=0
phar.readonly=0
--FILE--
<?php
class myIterator implements Iterator
{
    var $a;
    function __construct(array $a)
    {
        $this->a = $a;
    }
    function next(): void {
        echo "next
";
        next($this->a);
    }
    function current(): mixed {
        echo "current
";
        return current($this->a);
    }
    function key(): mixed {
        echo "key
";
        return key($this->a);
    }
    function valid(): bool {
        echo "valid
";
        return current($this->a);
    }
    function rewind(): void {
        echo "rewind
";
        reset($this->a);
    }
}
try {
    chdir(__DIR__);
    $phar = new Phar(__DIR__ . '/buildfromiterator4.phar');
    var_dump($phar->buildFromIterator(new myIterator(
        array(
            'a' => basename(__FILE__, 'php') . 'phpt',
            // demonstrate that none of these are added
            '.phar/stub.php' => basename(__FILE__, 'php') . 'phpt',
            '.phar/alias.txt' => basename(__FILE__, 'php') . 'phpt',
            '.phar/oops' => basename(__FILE__, 'php') . 'phpt',
        ))));
} catch (Exception $e) {
    var_dump(get_class($e));
    echo $e->getMessage() . "
";
}
?>
--CLEAN--
<?php
unlink(__DIR__ . '/buildfromiterator4.phar');
__HALT_COMPILER();
?>
--EXPECTF--
rewind
valid
current
key
next
valid
current
key
next
valid
current
key
next
valid
current
key
next
valid
array(1) {
  ["a"]=>
  string(%d) "%sphar_buildfromiterator4.phpt"
}

Did this file decode correctly?

Original Code

--TEST--
Phar::buildFromIterator() iterator, 1 file passed in
--EXTENSIONS--
phar
--INI--
phar.require_hash=0
phar.readonly=0
--FILE--
<?php
class myIterator implements Iterator
{
    var $a;
    function __construct(array $a)
    {
        $this->a = $a;
    }
    function next(): void {
        echo "next\n";
        next($this->a);
    }
    function current(): mixed {
        echo "current\n";
        return current($this->a);
    }
    function key(): mixed {
        echo "key\n";
        return key($this->a);
    }
    function valid(): bool {
        echo "valid\n";
        return current($this->a);
    }
    function rewind(): void {
        echo "rewind\n";
        reset($this->a);
    }
}
try {
    chdir(__DIR__);
    $phar = new Phar(__DIR__ . '/buildfromiterator4.phar');
    var_dump($phar->buildFromIterator(new myIterator(
        array(
            'a' => basename(__FILE__, 'php') . 'phpt',
            // demonstrate that none of these are added
            '.phar/stub.php' => basename(__FILE__, 'php') . 'phpt',
            '.phar/alias.txt' => basename(__FILE__, 'php') . 'phpt',
            '.phar/oops' => basename(__FILE__, 'php') . 'phpt',
        ))));
} catch (Exception $e) {
    var_dump(get_class($e));
    echo $e->getMessage() . "\n";
}
?>
--CLEAN--
<?php
unlink(__DIR__ . '/buildfromiterator4.phar');
__HALT_COMPILER();
?>
--EXPECTF--
rewind
valid
current
key
next
valid
current
key
next
valid
current
key
next
valid
current
key
next
valid
array(1) {
  ["a"]=>
  string(%d) "%sphar_buildfromiterator4.phpt"
}

Function Calls

None

Variables

None

Stats

MD5 e9dc56af660b8acd24dc3e47a5172bdb
Eval Count 0
Decode Time 77 ms