![]() |
sponsored links |
|
|
sponsored links
|
|
|
2
26th February 08:13
External User
Posts: 1
|
ID: 30642
Updated by: helly@php.net Reported By: keith dot ward at gmail dot com -Status: Open +Status: Bogus Bug Type: Class/Object related Operating System: Debian Linux r3 unstable PHP Version: 5CVS-2004-11-01 (dev) New Comment: Thank you for taking the time to write to us, but this is not a bug. Please double-check the do***entation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php var_dump() doesn't show static members. And don't reopen this report - check your code Previous Comments: ------------------------------------------------------------------------ [2004-11-01 04:53:01] keith dot ward at gmail dot com Description: ------------ When using extend to extend a class . Static variables are not inherited . Reproduce code: --------------- class a { public static $myvar; public function __construct() { $this->myvar = '1'; echo ' Set myvar to 1 ... ' . "\n"; var_dump($this); } } $a = new a(); class b extends a { function __construct() { echo 'DUmping from class b' . "\n"; var_dump($this); } } $a = new b(); ?> Expected result: ---------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (1) { ["myvar"]=> string(1) "1" } Actual result: -------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (0) { } ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=30642&edit=1 |
|
|
3
26th February 08:13
External User
Posts: 1
|
ID: 30642
Updated by: helly@php.net Reported By: keith dot ward at gmail dot com Status: Bogus Bug Type: Class/Object related -Operating System: Debian Linux r3 unstable +Operating System: * -PHP Version: 5CVS-2004-11-01 (dev) +PHP Version: 5.* -Assigned To: +Assigned To: helly New Comment: var_dump() doesn't show static members. And don't reopen this report - check your code Previous Comments: ------------------------------------------------------------------------ [2004-11-01 04:53:01] keith dot ward at gmail dot com Description: ------------ When using extend to extend a class . Static variables are not inherited . Reproduce code: --------------- class a { public static $myvar; public function __construct() { $this->myvar = '1'; echo ' Set myvar to 1 ... ' . "\n"; var_dump($this); } } $a = new a(); class b extends a { function __construct() { echo 'DUmping from class b' . "\n"; var_dump($this); } } $a = new b(); ?> Expected result: ---------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (1) { ["myvar"]=> string(1) "1" } Actual result: -------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (0) { } ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=30642&edit=1 |
|
|
4
26th February 08:14
External User
Posts: 1
|
ID: 30642
User updated by: keith dot ward at gmail dot com Reported By: keith dot ward at gmail dot com -Status: Bogus +Status: Open Bug Type: Class/Object related Operating System: * PHP Version: 5.* Assigned To: helly New Comment: This is NOT BOGUS , had you bothered to read the results , you would see that var_dump , did indeed return the static member myvar( from class A ) . If returning static members with var_dump was not to be supported (that's what it sounds like) it should not show up in the first var_dump either !. In Addition ... using echo parent::$myvar; or echo $this->myvar within class B , also returns nothing . So this bug is perfectly valid . Previous Comments: ------------------------------------------------------------------------ [2004-11-01 11:51:48] helly@php.net var_dump() doesn't show static members. And don't reopen this report - check your code ------------------------------------------------------------------------ [2004-11-01 04:53:01] keith dot ward at gmail dot com Description: ------------ When using extend to extend a class . Static variables are not inherited . Reproduce code: --------------- class a { public static $myvar; public function __construct() { $this->myvar = '1'; echo ' Set myvar to 1 ... ' . "\n"; var_dump($this); } } $a = new a(); class b extends a { function __construct() { echo 'DUmping from class b' . "\n"; var_dump($this); } } $a = new b(); ?> Expected result: ---------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (1) { ["myvar"]=> string(1) "1" } Actual result: -------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (0) { } ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=30642&edit=1 |
|
|
5
26th February 11:57
External User
Posts: 1
|
ID: 30642
Comment by: ashk06 at dsl dot pipex dot com Reported By: keith dot ward at gmail dot com Status: Open Bug Type: Class/Object related Operating System: * PHP Version: 5.* Assigned To: helly New Comment: http://bugs.php.net/bug.php?id=30451 Seems to be a duplicate of this . Previous Comments: ------------------------------------------------------------------------ [2004-11-02 01:52:15] keith dot ward at gmail dot com This is NOT BOGUS , had you bothered to read the results , you would see that var_dump , did indeed return the static member myvar( from class A ) . If returning static members with var_dump was not to be supported (that's what it sounds like) it should not show up in the first var_dump either !. In Addition ... using echo parent::$myvar; or echo $this->myvar within class B , also returns nothing . So this bug is perfectly valid . ------------------------------------------------------------------------ [2004-11-01 11:51:48] helly@php.net var_dump() doesn't show static members. And don't reopen this report - check your code ------------------------------------------------------------------------ [2004-11-01 04:53:01] keith dot ward at gmail dot com Description: ------------ When using extend to extend a class . Static variables are not inherited . Reproduce code: --------------- class a { public static $myvar; public function __construct() { $this->myvar = '1'; echo ' Set myvar to 1 ... ' . "\n"; var_dump($this); } } $a = new a(); class b extends a { function __construct() { echo 'DUmping from class b' . "\n"; var_dump($this); } } $a = new b(); ?> Expected result: ---------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (1) { ["myvar"]=> string(1) "1" } Actual result: -------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (0) { } ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=30642&edit=1 |
|
|
6
27th February 19:03
External User
Posts: 1
|
ID: 30642
Updated by: tony2001@php.net Reported By: keith dot ward at gmail dot com -Status: Open +Status: Bogus Bug Type: Class/Object related Operating System: * PHP Version: 5.* Assigned To: helly New Comment: Nope, #30451 has nothing to do with it. And yes, var_dump() DOES NOT show static members (see #30820, this issue is correctly reported there). I'm closing this report, as there is no sense in keeping duplicates. Previous Comments: ------------------------------------------------------------------------ [2004-11-03 17:34:06] ashk06 at dsl dot pipex dot com http://bugs.php.net/bug.php?id=30451 Seems to be a duplicate of this . ------------------------------------------------------------------------ [2004-11-02 01:52:15] keith dot ward at gmail dot com This is NOT BOGUS , had you bothered to read the results , you would see that var_dump , did indeed return the static member myvar( from class A ) . If returning static members with var_dump was not to be supported (that's what it sounds like) it should not show up in the first var_dump either !. In Addition ... using echo parent::$myvar; or echo $this->myvar within class B , also returns nothing . So this bug is perfectly valid . ------------------------------------------------------------------------ [2004-11-01 11:51:48] helly@php.net var_dump() doesn't show static members. And don't reopen this report - check your code ------------------------------------------------------------------------ [2004-11-01 04:53:01] keith dot ward at gmail dot com Description: ------------ When using extend to extend a class . Static variables are not inherited . Reproduce code: --------------- class a { public static $myvar; public function __construct() { $this->myvar = '1'; echo ' Set myvar to 1 ... ' . "\n"; var_dump($this); } } $a = new a(); class b extends a { function __construct() { echo 'DUmping from class b' . "\n"; var_dump($this); } } $a = new b(); ?> Expected result: ---------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (1) { ["myvar"]=> string(1) "1" } Actual result: -------------- Set myvar to 1 ... object(a)#1 (1) { ["myvar"]=> string(1) "1" } Dumping from class b object(b)#2 (0) { } ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=30642&edit=1 |
|
|