Annotation of embedaddon/php/Zend/tests/objects_023.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Creating instances dynamically
        !             3: --FILE--
        !             4: <?php 
        !             5: 
        !             6: $arr = array(new stdClass, 'stdClass');
        !             7: 
        !             8: new $arr[0]();
        !             9: new $arr[1]();
        !            10: 
        !            11: print "ok\n";
        !            12: 
        !            13: ?>
        !            14: --EXPECT--
        !            15: ok

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