Annotation of embedaddon/php/ext/zip/tests/bug38943.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: #38943, properties in extended class cannot be set (5.3+)
        !             3: --SKIPIF--
        !             4: <?php
        !             5: if(!extension_loaded('zip')) die('skip');
        !             6: ?>
        !             7: --FILE--
        !             8: <?php
        !             9: class myZip extends ZipArchive {
        !            10:        private $test = 0;
        !            11:        public $testp = 1;
        !            12:        private $testarray = array();
        !            13: 
        !            14:        public function __construct() {
        !            15:                $this->testarray[] = 1;
        !            16:                var_dump($this->testarray);
        !            17:        }
        !            18: }
        !            19: 
        !            20: $z = new myZip;
        !            21: $z->testp = "foobar";
        !            22: var_dump($z);
        !            23: 
        !            24: ?>
        !            25: --EXPECTF--
        !            26: array(1) {
        !            27:   [0]=>
        !            28:   int(1)
        !            29: }
        !            30: object(myZip)#1 (%d) {
        !            31:   ["test":"myZip":private]=>
        !            32:   int(0)
        !            33:   ["testp"]=>
        !            34:   string(6) "foobar"
        !            35:   ["testarray":"myZip":private]=>
        !            36:   array(1) {
        !            37:     [0]=>
        !            38:     int(1)
        !            39:   }
        !            40:   ["status"]=>
        !            41:   int(0)
        !            42:   ["statusSys"]=>
        !            43:   int(0)
        !            44:   ["numFiles"]=>
        !            45:   int(0)
        !            46:   ["filename"]=>
        !            47:   string(0) ""
        !            48:   ["comment"]=>
        !            49:   string(0) ""
        !            50: }

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