bug38943.inc 285 B

123456789101112131415
  1. <?php
  2. class myZip extends ZipArchive {
  3. private $test = 0;
  4. public $testp = 1;
  5. private $testarray = array();
  6. public function __construct() {
  7. $this->testarray[] = 1;
  8. var_dump($this->testarray);
  9. }
  10. }
  11. $z = new myZip;
  12. $z->testp = "foobar";
  13. var_dump($z);