php-src/ext/zip/tests/bug38943.inc
2008-11-04 13:24:39 +00:00

17 lines
259 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);