summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug51374.phpt
blob: a4d285322d3ec878e7b4e787e9a04d9176fb2334 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
SPL: SplFileObject wrongly initializes objects
--FILE--
<?php
class Foo extends SplFileObject
{
    public $bam = array();
}
$fileInfo = new SplFileInfo('php://temp');
$fileInfo->setFileClass('Foo');
$file = $fileInfo->openFile('r');

print var_dump($file->bam); // is null or UNKNOWN:0
?>
===DONE===
--EXPECT--
array(0) {
}
===DONE===