xref: /PHP-7.4/ext/zip/tests/bug38943_2.phpt (revision 0bd3fecb)
1--TEST--
2#38943, properties in extended class cannot be set (5.3)
3--SKIPIF--
4<?php
5if(!extension_loaded('zip')) die('skip');
6?>
7--FILE--
8<?php
9include 'bug38943.inc';
10?>
11--EXPECTF--
12array(1) {
13  [0]=>
14  int(1)
15}
16object(myZip)#1 (%d) {
17  ["test":"myZip":private]=>
18  int(0)
19  ["testp"]=>
20  string(6) "foobar"
21  ["testarray":"myZip":private]=>
22  array(1) {
23    [0]=>
24    int(1)
25  }
26  ["status"]=>
27  int(0)
28  ["statusSys"]=>
29  int(0)
30  ["numFiles"]=>
31  int(0)
32  ["filename"]=>
33  string(0) ""
34  ["comment"]=>
35  string(0) ""
36}
37