summaryrefslogtreecommitdiffstats
path: root/bug38943.inc
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2013-08-20 15:35:18 +0200
committerRemi Collet <fedora@famillecollet.com>2013-08-20 15:35:18 +0200
commit48a6c8cdb3e962b3a78662fe3d1bd5b514744bd4 (patch)
tree4568005b3ee9dabeaf1ff583c2bd9ebc9a3dcb4c /bug38943.inc
parent063eb97ba4c5b047a4a73234d589bd241f6950c9 (diff)
php-pecl-zip: typo
Diffstat (limited to 'bug38943.inc')
-rw-r--r--bug38943.inc16
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);
-