ID: 31686 Updated by: [EMAIL PROTECTED] Reported By: guth at fiifo dot u-psud dot fr -Status: Open +Status: Bogus Bug Type: Zend Engine 2 problem Operating System: * PHP Version: 5.0.3 New Comment:
Please do not submit the same bug more than once. An existing bug report already describes this very problem. Even if you feel that your issue is somewhat different, the resolution is likely to be the same. Thank you for your interest in PHP. Do NOT report same bugs many times. Previous Comments: ------------------------------------------------------------------------ [2005-05-07 03:18:24] guth at fiifo dot u-psud dot fr No change. Seems to be the same bug than bug #30140. ------------------------------------------------------------------------ [2005-03-20 18:06:03] [EMAIL PROTECTED] No feedback was provided. The bug is being suspended because we assume that you are no longer experiencing the problem. If this is not the case and you are able to provide the information that was requested earlier, please do so and change the status of the bug back to "Open". Thank you. ------------------------------------------------------------------------ [2005-02-28 20:58:09] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php5-latest.tar.gz For Windows: http://snaps.php.net/win32/php5-win32-latest.zip ------------------------------------------------------------------------ [2005-01-25 15:37:27] guth at fiifo dot u-psud dot fr replace "array(1) { [0]=> string(2) "43" }" by "array(1) { [0]=> string(2) "12" }" in expected result. sorry for the mistake.. ------------------------------------------------------------------------ [2005-01-25 12:29:36] guth at fiifo dot u-psud dot fr This is the reproduce code: <?php class A { protected static $plop = 42; public function __construct() { self::$plop = 43; } } class B extends A { public function __construct() { parent::__construct(); var_dump(self::$plop); } } new B; class C { protected static $plop = array('42'); public function __construct() { self::$plop = array('12'); } } class D extends C { public function __construct() { parent::__construct(); var_dump(self::$plop); } } new D; ?> ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/31686 -- Edit this bug report at http://bugs.php.net/?id=31686&edit=1
