php-src/ext/standard/tests/streams/bug53903.phpt
Gustavo André dos Santos Lopes 36d82e8a85 - Fixed bug #53903 (userspace stream stat callback does not separate the
elements of the returned array before converting them).
2011-02-01 22:55:17 +00:00

33 lines
548 B
PHP

--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--
Notice: Undefined property: sw::$undefined in %s on line %d
Array
(
[0] => 1
)