Ask a Question related to PHP Bugs, Design and Development.
-
judas dot iscariote at gmail dot com #1
#38943 [NEW]: serious misbehaviour extending ZipArchive class
From: judas dot iscariote at gmail dot com
Operating system: Linux
PHP version: 5CVS-2006-09-24 (CVS)
PHP Bug Type: Zip Related
Bug description: serious misbehaviour extending ZipArchive class
Description:
------------
see the source, properties cannot be set correctly.
Reproduce code:
---------------
<?php
class myZip extends ZipArchive {
public $testp = 1;
}
$z = new myZip;
$z->testp = 'foobar';
var_dump($z);
?>
Expected result:
----------------
object(myZip)#1 (6) {
["testp"]=>
string(6) "foobar"
["status"]=>
int(0)
["statusSys"]=>
int(0)
["numFiles"]=>
int(0)
["filename"]=>
string(0) ""
["comment"]=>
string(0) ""
}
Actual result:
--------------
Warning: Attempt to assign property of non-object in bug.php on line 7
object(myZip)#1 (6) {
["testp"]=>
int(1)
["status"]=>
int(0)
["statusSys"]=>
int(0)
["numFiles"]=>
int(0)
["filename"]=>
string(0) ""
["comment"]=>
string(0) ""
}
--
Edit bug report at [url]http://bugs.php.net/?id=38943&edit=1[/url]
--
Try a CVS snapshot (PHP 4.4): [url]http://bugs.php.net/fix.php?id=38943&r=trysnapshot44[/url]
Try a CVS snapshot (PHP 5.2): [url]http://bugs.php.net/fix.php?id=38943&r=trysnapshot52[/url]
Try a CVS snapshot (PHP 6.0): [url]http://bugs.php.net/fix.php?id=38943&r=trysnapshot60[/url]
Fixed in CVS: [url]http://bugs.php.net/fix.php?id=38943&r=fixedcvs[/url]
Fixed in release: [url]http://bugs.php.net/fix.php?id=38943&r=alreadyfixed[/url]
Need backtrace: [url]http://bugs.php.net/fix.php?id=38943&r=needtrace[/url]
Need Reproduce Script: [url]http://bugs.php.net/fix.php?id=38943&r=needscript[/url]
Try newer version: [url]http://bugs.php.net/fix.php?id=38943&r=oldversion[/url]
Not developer issue: [url]http://bugs.php.net/fix.php?id=38943&r=support[/url]
Expected behavior: [url]http://bugs.php.net/fix.php?id=38943&r=notwrong[/url]
Not enough info: [url]http://bugs.php.net/fix.php?id=38943&r=notenoughinfo[/url]
Submitted twice: [url]http://bugs.php.net/fix.php?id=38943&r=submittedtwice[/url]
register_globals: [url]http://bugs.php.net/fix.php?id=38943&r=globals[/url]
PHP 3 support discontinued: [url]http://bugs.php.net/fix.php?id=38943&r=php3[/url]
Daylight Savings: [url]http://bugs.php.net/fix.php?id=38943&r=dst[/url]
IIS Stability: [url]http://bugs.php.net/fix.php?id=38943&r=isapi[/url]
Install GNU Sed: [url]http://bugs.php.net/fix.php?id=38943&r=gnused[/url]
Floating point limitations: [url]http://bugs.php.net/fix.php?id=38943&r=float[/url]
No Zend Extensions: [url]http://bugs.php.net/fix.php?id=38943&r=nozend[/url]
MySQL Configuration Error: [url]http://bugs.php.net/fix.php?id=38943&r=mysqlcfg[/url]
judas dot iscariote at gmail dot com Guest
-
#39758 [NEW]: Error message on extending a class that implements a interface
From: bacher at bash-it dot de Operating system: Linux Ubuntu 6.0 PHP version: 5.2.0 PHP Bug Type: Class/Object related Bug... -
#39784 [NEW]: Can't make an instance of ZipArchive
From: itsmegawtf at gmail dot com Operating system: Gentoo linux PHP version: 5.2.0 PHP Bug Type: Zip Related Bug... -
#39758 [Opn]: Error message on extending a class that implements a interface
ID: 39758 User updated by: bacher at bash-it dot de Reported By: bacher at bash-it dot de Status: Open Bug Type: ... -
#39742 [NEW]: Class 'ZipArchive' not found
From: eric dot leseint at ac-poitiers dot fr Operating system: Windows 2003 server PHP version: 5.2.0 PHP Bug Type: ... -
#38944 [NEW]: ZipArchive exits with SEGV
From: judas dot iscariote at gmail dot com Operating system: linux PHP version: 5CVS-2006-09-25 (CVS) PHP Bug Type: Zip... -
pajoye@php.net #2
#38943 [Opn->Csd]: serious misbehaviour extending ZipArchive class
ID: 38943
Updated by: [email]pajoye@php.net[/email]
Reported By: judas dot iscariote at gmail dot com
-Status: Open
+Status: Closed
Bug Type: Zip Related
Operating System: Linux
PHP Version: 5CVS-2006-09-24 (CVS)
-Assigned To:
+Assigned To: pajoye
New Comment:
This bug has been fixed in CVS.
Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
[url]http://snaps.php.net/[/url].
Thank you for the report, and for helping us make PHP better.
Thanks for this small test case :)
Fixed in 5.2 cvs and HEAD (6). Pecl release will follow later this
week.
Previous Comments:
------------------------------------------------------------------------
[2006-09-24 21:27:39] judas dot iscariote at gmail dot com
Description:
------------
see the source, properties cannot be set correctly.
Reproduce code:
---------------
<?php
class myZip extends ZipArchive {
public $testp = 1;
}
$z = new myZip;
$z->testp = 'foobar';
var_dump($z);
?>
Expected result:
----------------
object(myZip)#1 (6) {
["testp"]=>
string(6) "foobar"
["status"]=>
int(0)
["statusSys"]=>
int(0)
["numFiles"]=>
int(0)
["filename"]=>
string(0) ""
["comment"]=>
string(0) ""
}
Actual result:
--------------
Warning: Attempt to assign property of non-object in bug.php on line 7
object(myZip)#1 (6) {
["testp"]=>
int(1)
["status"]=>
int(0)
["statusSys"]=>
int(0)
["numFiles"]=>
int(0)
["filename"]=>
string(0) ""
["comment"]=>
string(0) ""
}
------------------------------------------------------------------------
--
Edit this bug report at [url]http://bugs.php.net/?id=38943&edit=1[/url]
pajoye@php.net Guest



Reply With Quote

