Annotation of embedaddon/php/ext/spl/tests/bug51374.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: SPL: SplFileObject wrongly initializes objects
        !             3: --FILE--
        !             4: <?php
        !             5: class Foo extends SplFileObject
        !             6: {
        !             7:     public $bam = array();
        !             8: }
        !             9: $fileInfo = new SplFileInfo('php://temp');
        !            10: $fileInfo->setFileClass('Foo');
        !            11: $file = $fileInfo->openFile('r');
        !            12: 
        !            13: print var_dump($file->bam); // is null or UNKNOWN:0
        !            14: ?>
        !            15: ===DONE===
        !            16: --EXPECT--
        !            17: array(0) {
        !            18: }
        !            19: ===DONE===

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>