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 #53903 streamwrapper/stream_stat causes problems --FILE-- <?php class sw { ..

Decoded Output download

--TEST--
Bug #53903 streamwrapper/stream_stat causes problems
--FILE--
<?php

class sw {

    public function stream_open($path, $mode, $options, &$opened_path) {
        return true;
    }

    public function stream_stat() {
        return array(
            'atime' => $this->undefined,
        );
    }

}
stream_wrapper_register('sx', 'sw') or die('failed');

fstat(fopen('sx://test', 'r'));

$s[] = 1; //  Cannot use a scalar value as an array

print_r($s);
?>
--EXPECTF--
Warning: Undefined property: sw::$undefined in %s on line %d
Array
(
    [0] => 1
)

Did this file decode correctly?

Original Code

--TEST--
Bug #53903 streamwrapper/stream_stat causes problems
--FILE--
<?php

class sw {

    public function stream_open($path, $mode, $options, &$opened_path) {
        return true;
    }

    public function stream_stat() {
        return array(
            'atime' => $this->undefined,
        );
    }

}
stream_wrapper_register('sx', 'sw') or die('failed');

fstat(fopen('sx://test', 'r'));

$s[] = 1; //  Cannot use a scalar value as an array

print_r($s);
?>
--EXPECTF--
Warning: Undefined property: sw::$undefined in %s on line %d
Array
(
    [0] => 1
)

Function Calls

None

Variables

None

Stats

MD5 483f817afc3176204b680668a1610ca5
Eval Count 0
Decode Time 79 ms