mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
15 lines
285 B
PHP
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);
|