php-src/ext/zip/tests/bug38943.inc
2020-02-03 22:52:20 +01:00

15 lines
285 B
PHP

<?php
class myZip extends ZipArchive {
private $test = 0;
public $testp = 1;
private $testarray = array();
public function __construct() {
$this->testarray[] = 1;
var_dump($this->testarray);
}
}
$z = new myZip;
$z->testp = "foobar";
var_dump($z);