php-src/ext/zip/tests/bug38943.phpt
2008-05-21 09:27:41 +00:00

39 lines
588 B
PHP

--TEST--
#38943, properties in extended class cannot be set (< 5.3)
--SKIPIF--
<?php
/* $Id$ */
if(!extension_loaded('zip')) die('skip');
if (!defined('PHP_VERSION_MAJOR')) die('skip');
?>
--FILE--
<?php
include dirname(__FILE__) . '/bug38943.inc';
?>
--EXPECTF--
array(1) {
[0]=>
int(1)
}
object(myZip)#1 (%d) {
["test:private"]=>
int(0)
["testp"]=>
string(6) "foobar"
["testarray:private"]=>
array(1) {
[0]=>
int(1)
}
["status"]=>
int(0)
["statusSys"]=>
int(0)
["numFiles"]=>
int(0)
["filename"]=>
string(0) ""
["comment"]=>
string(0) ""
}