diff options
Diffstat (limited to 'bug38943.inc')
-rw-r--r-- | bug38943.inc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bug38943.inc b/bug38943.inc deleted file mode 100644 index a6f45e8..0000000 --- a/bug38943.inc +++ /dev/null @@ -1,16 +0,0 @@ -<?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); - |